Interface ProvisionedCapacityRequest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ProvisionedCapacityRequest.Builder,ProvisionedCapacityRequest>,SdkBuilder<ProvisionedCapacityRequest.Builder,ProvisionedCapacityRequest>,SdkPojo
- Enclosing class:
- ProvisionedCapacityRequest
public static interface ProvisionedCapacityRequest.Builder extends SdkPojo, CopyableBuilder<ProvisionedCapacityRequest.Builder,ProvisionedCapacityRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ProvisionedCapacityRequest.BuildernotificationConfiguration(Consumer<AccountSettingsNotificationConfiguration.Builder> notificationConfiguration)Configuration settings for notifications related to the provisioned capacity update.ProvisionedCapacityRequest.BuildernotificationConfiguration(AccountSettingsNotificationConfiguration notificationConfiguration)Configuration settings for notifications related to the provisioned capacity update.ProvisionedCapacityRequest.BuildertargetQueryTCU(Integer targetQueryTCU)The target compute capacity for querying data, specified in Timestream Compute Units (TCUs).-
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
-
-
-
-
Method Detail
-
targetQueryTCU
ProvisionedCapacityRequest.Builder targetQueryTCU(Integer targetQueryTCU)
The target compute capacity for querying data, specified in Timestream Compute Units (TCUs).
- Parameters:
targetQueryTCU- The target compute capacity for querying data, specified in Timestream Compute Units (TCUs).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
notificationConfiguration
ProvisionedCapacityRequest.Builder notificationConfiguration(AccountSettingsNotificationConfiguration notificationConfiguration)
Configuration settings for notifications related to the provisioned capacity update.
- Parameters:
notificationConfiguration- Configuration settings for notifications related to the provisioned capacity update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
notificationConfiguration
default ProvisionedCapacityRequest.Builder notificationConfiguration(Consumer<AccountSettingsNotificationConfiguration.Builder> notificationConfiguration)
Configuration settings for notifications related to the provisioned capacity update.
This is a convenience method that creates an instance of theAccountSettingsNotificationConfiguration.Builderavoiding the need to create one manually viaAccountSettingsNotificationConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tonotificationConfiguration(AccountSettingsNotificationConfiguration).- Parameters:
notificationConfiguration- a consumer that will call methods onAccountSettingsNotificationConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
notificationConfiguration(AccountSettingsNotificationConfiguration)
-
-