interface ResizeClusterMessageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Redshift.Mixins.CfnScheduledActionPropsMixin.ResizeClusterMessageProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsredshift/mixins#CfnScheduledActionPropsMixin_ResizeClusterMessageProperty |
Java | software.amazon.awscdk.mixins.preview.services.redshift.mixins.CfnScheduledActionPropsMixin.ResizeClusterMessageProperty |
Python | aws_cdk.mixins_preview.aws_redshift.mixins.CfnScheduledActionPropsMixin.ResizeClusterMessageProperty |
TypeScript | @aws-cdk/mixins-preview » aws_redshift » mixins » CfnScheduledActionPropsMixin » ResizeClusterMessageProperty |
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 { mixins as redshift_mixins } from '@aws-cdk/mixins-preview/aws-redshift';
const resizeClusterMessageProperty: redshift_mixins.CfnScheduledActionPropsMixin.ResizeClusterMessageProperty = {
classic: false,
clusterIdentifier: 'clusterIdentifier',
clusterType: 'clusterType',
nodeType: 'nodeType',
numberOfNodes: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| classic? | boolean | IResolvable | A boolean value indicating whether the resize operation is using the classic resize process. |
| cluster | string | The unique identifier for the cluster to resize. |
| cluster | string | The new cluster type for the specified cluster. |
| node | string | The new node type for the nodes you are adding. |
| number | number | The new number of nodes for the cluster. |
classic?
Type:
boolean | IResolvable
(optional)
A boolean value indicating whether the resize operation is using the classic resize process.
If you don't provide this parameter or set the value to false , the resize type is elastic.
clusterIdentifier?
Type:
string
(optional)
The unique identifier for the cluster to resize.
clusterType?
Type:
string
(optional)
The new cluster type for the specified cluster.
nodeType?
Type:
string
(optional)
The new node type for the nodes you are adding.
If not specified, the cluster's current node type is used.
numberOfNodes?
Type:
number
(optional)
The new number of nodes for the cluster.
If not specified, the cluster's current number of nodes is used.

.NET
Go
Java
Python
TypeScript