Interface CfnScalableTarget.ScalableTargetActionProperty

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

@Stability(Stable) public static interface CfnScalableTarget.ScalableTargetActionProperty extends software.amazon.jsii.JsiiSerializable
ScalableTargetAction specifies the minimum and maximum capacity for the ScalableTargetAction property of the AWS::ApplicationAutoScaling::ScalableTarget ScheduledAction property type.

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.*;
 ScalableTargetActionProperty scalableTargetActionProperty = ScalableTargetActionProperty.builder()
         .maxCapacity(123)
         .minCapacity(123)
         .build();
 

See Also: