Interface EnableScalingProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
EnableScalingProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-10-25T14:21:13.452Z") @Stability(Stable) public interface EnableScalingProps extends software.amazon.jsii.JsiiSerializable
Properties for enabling DynamoDB capacity scaling.

Example:

 import software.amazon.awscdk.services.dynamodb.*;
 Table table;
 IScalableTableAttribute readCapacity = table.autoScaleReadCapacity(EnableScalingProps.builder()
         .minCapacity(10)
         .maxCapacity(1000)
         .build());
 readCapacity.scaleOnUtilization(UtilizationScalingProps.builder()
         .targetUtilizationPercent(60)
         .build());