Interface CfnScalableTarget.ScheduledActionProperty

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

@Stability(Stable) public static interface CfnScalableTarget.ScheduledActionProperty extends software.amazon.jsii.JsiiSerializable
ScheduledAction is a property of the AWS::ApplicationAutoScaling::ScalableTarget resource that specifies a scheduled action for a scalable target.

For more information, see Scheduled 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.*;
 ScheduledActionProperty scheduledActionProperty = ScheduledActionProperty.builder()
         .schedule("schedule")
         .scheduledActionName("scheduledActionName")
         // the properties below are optional
         .endTime(new Date())
         .scalableTargetAction(ScalableTargetActionProperty.builder()
                 .maxCapacity(123)
                 .minCapacity(123)
                 .build())
         .startTime(new Date())
         .timezone("timezone")
         .build();
 

See Also: