@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-21T16:39:02.562Z") @Stability(value=Stable) public interface CfnScheduledActionProps extends software.amazon.jsii.JsiiSerializable
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.redshift.*;
CfnScheduledActionProps cfnScheduledActionProps = CfnScheduledActionProps.builder()
.scheduledActionName("scheduledActionName")
// the properties below are optional
.enable(false)
.endTime("endTime")
.iamRole("iamRole")
.schedule("schedule")
.scheduledActionDescription("scheduledActionDescription")
.startTime("startTime")
.targetAction(ScheduledActionTypeProperty.builder()
.pauseCluster(PauseClusterMessageProperty.builder()
.clusterIdentifier("clusterIdentifier")
.build())
.resizeCluster(ResizeClusterMessageProperty.builder()
.clusterIdentifier("clusterIdentifier")
// the properties below are optional
.classic(false)
.clusterType("clusterType")
.nodeType("nodeType")
.numberOfNodes(123)
.build())
.resumeCluster(ResumeClusterMessageProperty.builder()
.clusterIdentifier("clusterIdentifier")
.build())
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnScheduledActionProps.Builder
A builder for
CfnScheduledActionProps |
static class |
CfnScheduledActionProps.Jsii$Proxy
An implementation for
CfnScheduledActionProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnScheduledActionProps.Builder |
builder() |
default Object |
getEnable()
`AWS::Redshift::ScheduledAction.Enable`.
|
default String |
getEndTime()
`AWS::Redshift::ScheduledAction.EndTime`.
|
default String |
getIamRole()
`AWS::Redshift::ScheduledAction.IamRole`.
|
default String |
getSchedule()
`AWS::Redshift::ScheduledAction.Schedule`.
|
default String |
getScheduledActionDescription()
`AWS::Redshift::ScheduledAction.ScheduledActionDescription`.
|
String |
getScheduledActionName()
`AWS::Redshift::ScheduledAction.ScheduledActionName`.
|
default String |
getStartTime()
`AWS::Redshift::ScheduledAction.StartTime`.
|
default Object |
getTargetAction()
`AWS::Redshift::ScheduledAction.TargetAction`.
|
@Stability(value=Stable) @Nullable default Object getEnable()
@Stability(value=Stable) @Nullable default String getEndTime()
@Stability(value=Stable) @Nullable default String getIamRole()
@Stability(value=Stable) @Nullable default String getSchedule()
@Stability(value=Stable) @Nullable default String getScheduledActionDescription()
@Stability(value=Stable) @NotNull String getScheduledActionName()
@Stability(value=Stable) @Nullable default String getStartTime()
@Stability(value=Stable) @Nullable default Object getTargetAction()
@Stability(value=Stable) static CfnScheduledActionProps.Builder builder()
CfnScheduledActionProps.Builder of CfnScheduledActionPropsCopyright © 2021. All rights reserved.