@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.819Z") @Stability(value=Stable) public interface ScheduledActionProps extends software.amazon.jsii.JsiiSerializable, 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@Stability(value=Stable) @NotNull IAutoScalingGroup getAutoScalingGroup()
@Stability(value=Stable) static ScheduledActionProps.Builder builder()
builder in interface BasicScheduledActionPropsScheduledActionProps.Builder of ScheduledActionPropsCopyright © 2022. All rights reserved.