Interface CfnScalableTarget.SuspendedStateProperty

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

@Stability(Stable) public static interface CfnScalableTarget.SuspendedStateProperty extends software.amazon.jsii.JsiiSerializable
SuspendedState is a property of the AWS::ApplicationAutoScaling::ScalableTarget resource that specifies whether the scaling activities for a scalable target are in a suspended state.

For more information, see Suspending and resuming scaling in the Application Auto Scaling User Guide .

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.*;
 SuspendedStateProperty suspendedStateProperty = SuspendedStateProperty.builder()
         .dynamicScalingInSuspended(false)
         .dynamicScalingOutSuspended(false)
         .scheduledScalingSuspended(false)
         .build();
 

See Also: