Interface CfnGlobalTablePropsMixin.WriteProvisionedThroughputSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGlobalTablePropsMixin.WriteProvisionedThroughputSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnGlobalTablePropsMixin
@Stability(Stable)
public static interface CfnGlobalTablePropsMixin.WriteProvisionedThroughputSettingsProperty
extends software.amazon.jsii.JsiiSerializable
Specifies an auto scaling policy for write capacity.
This policy will be applied to all replicas. This setting must be specified if BillingMode is set to PROVISIONED .
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.dynamodb.*;
WriteProvisionedThroughputSettingsProperty writeProvisionedThroughputSettingsProperty = WriteProvisionedThroughputSettingsProperty.builder()
.writeCapacityAutoScalingSettings(CapacityAutoScalingSettingsProperty.builder()
.maxCapacity(123)
.minCapacity(123)
.seedCapacity(123)
.targetTrackingScalingPolicyConfiguration(TargetTrackingScalingPolicyConfigurationProperty.builder()
.disableScaleIn(false)
.scaleInCooldown(123)
.scaleOutCooldown(123)
.targetValue(123)
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnGlobalTablePropsMixin.WriteProvisionedThroughputSettingsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getWriteCapacityAutoScalingSettings
Specifies auto scaling settings for the replica table or global secondary index.Returns union: either
IResolvableorCfnGlobalTablePropsMixin.CapacityAutoScalingSettingsProperty- See Also:
-
builder
@Stability(Stable) static CfnGlobalTablePropsMixin.WriteProvisionedThroughputSettingsProperty.Builder builder()
-