interface PauseClusterMessageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Redshift.CfnScheduledAction.PauseClusterMessageProperty |
Java | software.amazon.awscdk.services.redshift.CfnScheduledAction.PauseClusterMessageProperty |
Python | aws_cdk.aws_redshift.CfnScheduledAction.PauseClusterMessageProperty |
TypeScript | @aws-cdk/aws-redshift » CfnScheduledAction » PauseClusterMessageProperty |
Describes a pause cluster operation.
For example, a scheduled action to run the PauseCluster API operation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as redshift from '@aws-cdk/aws-redshift';
const pauseClusterMessageProperty: redshift.CfnScheduledAction.PauseClusterMessageProperty = {
clusterIdentifier: 'clusterIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | The identifier of the cluster to be paused. |
clusterIdentifier
Type:
string
The identifier of the cluster to be paused.

.NET
Java
Python
TypeScript