Interface CfnGlobalTablePropsMixin.CapacityAutoScalingSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnGlobalTablePropsMixin.CapacityAutoScalingSettingsProperty.Jsii$Proxy
Enclosing class:
CfnGlobalTablePropsMixin

@Stability(Stable) public static interface CfnGlobalTablePropsMixin.CapacityAutoScalingSettingsProperty extends software.amazon.jsii.JsiiSerializable
Configures a scalable target and an autoscaling policy for a table or global secondary index's read or write capacity.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.dynamodb.mixins.*;
 CapacityAutoScalingSettingsProperty capacityAutoScalingSettingsProperty = CapacityAutoScalingSettingsProperty.builder()
         .maxCapacity(123)
         .minCapacity(123)
         .seedCapacity(123)
         .targetTrackingScalingPolicyConfiguration(TargetTrackingScalingPolicyConfigurationProperty.builder()
                 .disableScaleIn(false)
                 .scaleInCooldown(123)
                 .scaleOutCooldown(123)
                 .targetValue(123)
                 .build())
         .build();
 

See Also: