@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)", date="2023-01-31T18:36:58.613Z") public interface ScheduledActionProps extends BasicScheduledActionProps
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; ScheduledActionProps scheduledActionProps = ScheduledActionProps.builder() .autoScalingGroup(autoScalingGroup) .schedule(schedule) // the properties below are optional .desiredCapacity(123) .endTime(new Date()) .maxCapacity(123) .minCapacity(123) .startTime(new Date()) .timeZone("timeZone") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
ScheduledActionProps.Builder
A builder for
ScheduledActionProps |
static class |
ScheduledActionProps.Jsii$Proxy
An implementation for
ScheduledActionProps |
Modifier and Type | Method and Description |
---|---|
static ScheduledActionProps.Builder |
builder() |
IAutoScalingGroup |
getAutoScalingGroup()
The AutoScalingGroup to apply the scheduled actions to.
|
getDesiredCapacity, getEndTime, getMaxCapacity, getMinCapacity, getSchedule, getStartTime, getTimeZone
IAutoScalingGroup getAutoScalingGroup()
static ScheduledActionProps.Builder builder()
builder
in interface BasicScheduledActionProps
ScheduledActionProps.Builder
of ScheduledActionProps