Interface CfnCapacityProvider.ManagedScalingProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCapacityProvider.ManagedScalingProperty.Jsii$Proxy
Enclosing class:
CfnCapacityProvider

@Stability(Stable) public static interface CfnCapacityProvider.ManagedScalingProperty extends software.amazon.jsii.JsiiSerializable
The managed scaling settings for the Auto Scaling group capacity provider.

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.ecs.*;
 ManagedScalingProperty managedScalingProperty = ManagedScalingProperty.builder()
         .instanceWarmupPeriod(123)
         .maximumScalingStepSize(123)
         .minimumScalingStepSize(123)
         .status("status")
         .targetCapacity(123)
         .build();
 

See Also: