Interface CfnScheduledActionProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnScheduledActionProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:12.805Z") @Stability(Stable) public interface CfnScheduledActionProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnScheduledAction.

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();
 

See Also: