Interface EnableScalingProps

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

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-22T02:24:00.035Z") @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());