Class ScheduledAction

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.Resource
software.amazon.awscdk.services.autoscaling.ScheduledAction
All Implemented Interfaces:
IResource, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:03.160Z") @Stability(Stable) public class ScheduledAction extends Resource
Define a scheduled scaling action.

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.autoscaling.*;
 AutoScalingGroup autoScalingGroup;
 Schedule schedule;
 ScheduledAction scheduledAction = ScheduledAction.Builder.create(this, "MyScheduledAction")
         .autoScalingGroup(autoScalingGroup)
         .schedule(schedule)
         // the properties below are optional
         .desiredCapacity(123)
         .endTime(new Date())
         .maxCapacity(123)
         .minCapacity(123)
         .startTime(new Date())
         .timeZone("timeZone")
         .build();
 
  • Constructor Details

    • ScheduledAction

      protected ScheduledAction(software.amazon.jsii.JsiiObjectRef objRef)
    • ScheduledAction

      protected ScheduledAction(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • ScheduledAction

      @Stability(Stable) public ScheduledAction(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull ScheduledActionProps props)
      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      props - This parameter is required.
  • Method Details

    • getScheduledActionName

      @Stability(Stable) @NotNull public String getScheduledActionName()
      The name of the scheduled action.