Interface CfnGlobalTable.TargetTrackingScalingPolicyConfigurationProperty

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

@Stability(Stable) public static interface CfnGlobalTable.TargetTrackingScalingPolicyConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Defines a target tracking scaling policy.

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.*;
 TargetTrackingScalingPolicyConfigurationProperty targetTrackingScalingPolicyConfigurationProperty = TargetTrackingScalingPolicyConfigurationProperty.builder()
         .targetValue(123)
         // the properties below are optional
         .disableScaleIn(false)
         .scaleInCooldown(123)
         .scaleOutCooldown(123)
         .build();