Interface EnableScalingProps

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:05.538Z") @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());