Interface UpdateAccountSettingsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateAccountSettingsRequest.Builder,UpdateAccountSettingsRequest>,SdkBuilder<UpdateAccountSettingsRequest.Builder,UpdateAccountSettingsRequest>,SdkPojo,SdkRequest.Builder,TimestreamQueryRequest.Builder
- Enclosing class:
- UpdateAccountSettingsRequest
public static interface UpdateAccountSettingsRequest.Builder extends TimestreamQueryRequest.Builder, SdkPojo, CopyableBuilder<UpdateAccountSettingsRequest.Builder,UpdateAccountSettingsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateAccountSettingsRequest.BuildermaxQueryTCU(Integer maxQueryTCU)The maximum number of compute units the service will use at any point in time to serve your queries.UpdateAccountSettingsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateAccountSettingsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)default UpdateAccountSettingsRequest.BuilderqueryCompute(Consumer<QueryComputeRequest.Builder> queryCompute)Modifies the query compute settings configured in your account, including the query pricing model and provisioned Timestream Compute Units (TCUs) in your account.UpdateAccountSettingsRequest.BuilderqueryCompute(QueryComputeRequest queryCompute)Modifies the query compute settings configured in your account, including the query pricing model and provisioned Timestream Compute Units (TCUs) in your account.UpdateAccountSettingsRequest.BuilderqueryPricingModel(String queryPricingModel)The pricing model for queries in an account.UpdateAccountSettingsRequest.BuilderqueryPricingModel(QueryPricingModel queryPricingModel)The pricing model for queries in an account.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.services.timestreamquery.model.TimestreamQueryRequest.Builder
build
-
-
-
-
Method Detail
-
maxQueryTCU
UpdateAccountSettingsRequest.Builder maxQueryTCU(Integer maxQueryTCU)
The maximum number of compute units the service will use at any point in time to serve your queries. To run queries, you must set a minimum capacity of 4 TCU. You can set the maximum number of TCU in multiples of 4, for example, 4, 8, 16, 32, and so on. The maximum value supported for
MaxQueryTCUis 1000. To request an increase to this soft limit, contact Amazon Web Services Support. For information about the default quota for maxQueryTCU, see Default quotas. This configuration is applicable only for on-demand usage of Timestream Compute Units (TCUs).The maximum value supported for
MaxQueryTCUis 1000. To request an increase to this soft limit, contact Amazon Web Services Support. For information about the default quota formaxQueryTCU, see Default quotas.- Parameters:
maxQueryTCU- The maximum number of compute units the service will use at any point in time to serve your queries. To run queries, you must set a minimum capacity of 4 TCU. You can set the maximum number of TCU in multiples of 4, for example, 4, 8, 16, 32, and so on. The maximum value supported forMaxQueryTCUis 1000. To request an increase to this soft limit, contact Amazon Web Services Support. For information about the default quota for maxQueryTCU, see Default quotas. This configuration is applicable only for on-demand usage of Timestream Compute Units (TCUs).The maximum value supported for
MaxQueryTCUis 1000. To request an increase to this soft limit, contact Amazon Web Services Support. For information about the default quota formaxQueryTCU, see Default quotas.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryPricingModel
UpdateAccountSettingsRequest.Builder queryPricingModel(String queryPricingModel)
The pricing model for queries in an account.
The
QueryPricingModelparameter is used by several Timestream operations; however, theUpdateAccountSettingsAPI operation doesn't recognize any values other thanCOMPUTE_UNITS.- Parameters:
queryPricingModel- The pricing model for queries in an account.The
QueryPricingModelparameter is used by several Timestream operations; however, theUpdateAccountSettingsAPI operation doesn't recognize any values other thanCOMPUTE_UNITS.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
QueryPricingModel,QueryPricingModel
-
queryPricingModel
UpdateAccountSettingsRequest.Builder queryPricingModel(QueryPricingModel queryPricingModel)
The pricing model for queries in an account.
The
QueryPricingModelparameter is used by several Timestream operations; however, theUpdateAccountSettingsAPI operation doesn't recognize any values other thanCOMPUTE_UNITS.- Parameters:
queryPricingModel- The pricing model for queries in an account.The
QueryPricingModelparameter is used by several Timestream operations; however, theUpdateAccountSettingsAPI operation doesn't recognize any values other thanCOMPUTE_UNITS.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
QueryPricingModel,QueryPricingModel
-
queryCompute
UpdateAccountSettingsRequest.Builder queryCompute(QueryComputeRequest queryCompute)
Modifies the query compute settings configured in your account, including the query pricing model and provisioned Timestream Compute Units (TCUs) in your account.
This API is idempotent, meaning that making the same request multiple times will have the same effect as making the request once.
- Parameters:
queryCompute- Modifies the query compute settings configured in your account, including the query pricing model and provisioned Timestream Compute Units (TCUs) in your account.This API is idempotent, meaning that making the same request multiple times will have the same effect as making the request once.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryCompute
default UpdateAccountSettingsRequest.Builder queryCompute(Consumer<QueryComputeRequest.Builder> queryCompute)
Modifies the query compute settings configured in your account, including the query pricing model and provisioned Timestream Compute Units (TCUs) in your account.
This is a convenience method that creates an instance of theThis API is idempotent, meaning that making the same request multiple times will have the same effect as making the request once.
QueryComputeRequest.Builderavoiding the need to create one manually viaQueryComputeRequest.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toqueryCompute(QueryComputeRequest).- Parameters:
queryCompute- a consumer that will call methods onQueryComputeRequest.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
queryCompute(QueryComputeRequest)
-
overrideConfiguration
UpdateAccountSettingsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateAccountSettingsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-