Interface AutoscaledCapacityOptions

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

@Generated(value="jsii-pacmak/1.99.0 (build 8f757e4)", date="2024-06-13T18:49:17.236Z") @Stability(Stable) public interface AutoscaledCapacityOptions extends software.amazon.jsii.JsiiSerializable
Options used to configure autoscaled capacity.

Example:

 import software.amazon.awscdk.*;
 App app = new App();
 Stack stack = Stack.Builder.create(app, "Stack").env(Environment.builder().region("us-west-2").build()).build();
 TableV2 globalTable = TableV2.Builder.create(stack, "GlobalTable")
         .partitionKey(Attribute.builder().name("pk").type(AttributeType.STRING).build())
         .billing(Billing.provisioned(ThroughputProps.builder()
                 .readCapacity(Capacity.fixed(10))
                 .writeCapacity(Capacity.autoscaled(AutoscaledCapacityOptions.builder().maxCapacity(15).build()))
                 .build()))
         .replicas(List.of(ReplicaTableProps.builder()
                 .region("us-east-1")
                 .build(), ReplicaTableProps.builder()
                 .region("us-east-2")
                 .readCapacity(Capacity.autoscaled(AutoscaledCapacityOptions.builder().maxCapacity(20).targetUtilizationPercent(50).build()))
                 .build()))
         .build();
 
  • Method Details

    • getMaxCapacity

      @Stability(Stable) @NotNull Number getMaxCapacity()
      The maximum allowable capacity.
    • getMinCapacity

      @Stability(Stable) @Nullable default Number getMinCapacity()
      The minimum allowable capacity.

      Default: 1

    • getSeedCapacity

      @Stability(Stable) @Nullable default Number getSeedCapacity()
      If you want to switch a table's billing mode from on-demand to provisioned or from provisioned to on-demand, you must specify a value for this property for each autoscaled resource.

      Default: no seed capacity

    • getTargetUtilizationPercent

      @Stability(Stable) @Nullable default Number getTargetUtilizationPercent()
      The ratio of consumed capacity units to provisioned capacity units.

      Note: Target utilization percent cannot be less than 20 and cannot be greater than 90.

      Default: 70

    • builder

      @Stability(Stable) static AutoscaledCapacityOptions.Builder builder()
      Returns:
      a AutoscaledCapacityOptions.Builder of AutoscaledCapacityOptions