@Stability(value=Stable)
public static interface CfnScalableTarget.ScheduledActionProperty
extends software.amazon.jsii.JsiiSerializable
// 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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnScalableTarget.ScheduledActionProperty.Builder
A builder for
CfnScalableTarget.ScheduledActionProperty |
static class |
CfnScalableTarget.ScheduledActionProperty.Jsii$Proxy
An implementation for
CfnScalableTarget.ScheduledActionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnScalableTarget.ScheduledActionProperty.Builder |
builder() |
default Object |
getEndTime()
`CfnScalableTarget.ScheduledActionProperty.EndTime`.
|
default Object |
getScalableTargetAction()
`CfnScalableTarget.ScheduledActionProperty.ScalableTargetAction`.
|
String |
getSchedule()
`CfnScalableTarget.ScheduledActionProperty.Schedule`.
|
String |
getScheduledActionName()
`CfnScalableTarget.ScheduledActionProperty.ScheduledActionName`.
|
default Object |
getStartTime()
`CfnScalableTarget.ScheduledActionProperty.StartTime`.
|
default String |
getTimezone()
`CfnScalableTarget.ScheduledActionProperty.Timezone`.
|
@Stability(value=Stable) @Nullable default Object getEndTime()
@Stability(value=Stable) @Nullable default Object getScalableTargetAction()
@Stability(value=Stable) @NotNull String getSchedule()
@Stability(value=Stable) @NotNull String getScheduledActionName()
@Stability(value=Stable) @Nullable default Object getStartTime()
@Stability(value=Stable) @Nullable default String getTimezone()
@Stability(value=Stable) static CfnScalableTarget.ScheduledActionProperty.Builder builder()
Copyright © 2021. All rights reserved.