Interface CfnGlobalTable.ReadProvisionedThroughputSettingsProperty

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

@Stability(Stable) public static interface CfnGlobalTable.ReadProvisionedThroughputSettingsProperty extends software.amazon.jsii.JsiiSerializable
Allows you to specify the read capacity settings for a replica table or a replica global secondary index when the BillingMode is set to PROVISIONED .

You must specify a value for either ReadCapacityUnits or ReadCapacityAutoScalingSettings , but not both. You can switch between fixed capacity and auto scaling.

Example:

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

See Also: