interface ScheduledActionTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Redshift.Mixins.CfnScheduledActionPropsMixin.ScheduledActionTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsredshift/mixins#CfnScheduledActionPropsMixin_ScheduledActionTypeProperty |
Java | software.amazon.awscdk.mixins.preview.services.redshift.mixins.CfnScheduledActionPropsMixin.ScheduledActionTypeProperty |
Python | aws_cdk.mixins_preview.aws_redshift.mixins.CfnScheduledActionPropsMixin.ScheduledActionTypeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_redshift » mixins » CfnScheduledActionPropsMixin » ScheduledActionTypeProperty |
The action type that specifies an Amazon Redshift API operation that is supported by the Amazon Redshift scheduler.
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 scheduledActionTypeProperty: redshift_mixins.CfnScheduledActionPropsMixin.ScheduledActionTypeProperty = {
pauseCluster: {
clusterIdentifier: 'clusterIdentifier',
},
resizeCluster: {
classic: false,
clusterIdentifier: 'clusterIdentifier',
clusterType: 'clusterType',
nodeType: 'nodeType',
numberOfNodes: 123,
},
resumeCluster: {
clusterIdentifier: 'clusterIdentifier',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| pause | IResolvable | Pause | An action that runs a PauseCluster API operation. |
| resize | IResolvable | Resize | An action that runs a ResizeCluster API operation. |
| resume | IResolvable | Resume | An action that runs a ResumeCluster API operation. |
pauseCluster?
Type:
IResolvable | Pause
(optional)
An action that runs a PauseCluster API operation.
resizeCluster?
Type:
IResolvable | Resize
(optional)
An action that runs a ResizeCluster API operation.
resumeCluster?
Type:
IResolvable | Resume
(optional)
An action that runs a ResumeCluster API operation.

.NET
Go
Java
Python
TypeScript