Interface BaseScalableAttributeProps

All Superinterfaces:
EnableScalingProps, software.amazon.jsii.JsiiSerializable
All Known Subinterfaces:
ScalableInstanceCountProps, ScalableTaskCountProps
All Known Implementing Classes:
BaseScalableAttributeProps.Jsii$Proxy, ScalableInstanceCountProps.Jsii$Proxy, ScalableTaskCountProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:12.321Z") @Stability(Stable) public interface BaseScalableAttributeProps extends software.amazon.jsii.JsiiSerializable, EnableScalingProps
Properties for a ScalableTableAttribute.

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.applicationautoscaling.*;
 import software.amazon.awscdk.services.iam.*;
 Role role;
 BaseScalableAttributeProps baseScalableAttributeProps = BaseScalableAttributeProps.builder()
         .dimension("dimension")
         .maxCapacity(123)
         .resourceId("resourceId")
         .role(role)
         .serviceNamespace(ServiceNamespace.ECS)
         // the properties below are optional
         .minCapacity(123)
         .build();