Interface CfnScheduledAction.ResizeClusterMessageProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnScheduledAction.ResizeClusterMessageProperty.Jsii$Proxy
Enclosing class:
CfnScheduledAction

@Stability(Stable) public static interface CfnScheduledAction.ResizeClusterMessageProperty extends software.amazon.jsii.JsiiSerializable
Describes a resize cluster operation.

For example, a scheduled action to run the ResizeCluster API operation.

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.*;
 ResizeClusterMessageProperty resizeClusterMessageProperty = ResizeClusterMessageProperty.builder()
         .clusterIdentifier("clusterIdentifier")
         // the properties below are optional
         .classic(false)
         .clusterType("clusterType")
         .nodeType("nodeType")
         .numberOfNodes(123)
         .build();
 

See Also: