interface CfnSnapshotMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RedshiftServerless.Mixins.CfnSnapshotMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsredshiftserverless/mixins#CfnSnapshotMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.redshiftserverless.mixins.CfnSnapshotMixinProps |
Python | aws_cdk.mixins_preview.aws_redshiftserverless.mixins.CfnSnapshotMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_redshiftserverless » mixins » CfnSnapshotMixinProps |
Properties for CfnSnapshotPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as redshiftserverless_mixins } from '@aws-cdk/mixins-preview/aws-redshiftserverless';
const cfnSnapshotMixinProps: redshiftserverless_mixins.CfnSnapshotMixinProps = {
namespaceName: 'namespaceName',
retentionPeriod: 123,
snapshotName: 'snapshotName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| namespace | string | The name of the namepsace. |
| retention | number | The retention period of the snapshot created by the scheduled action. |
| snapshot | string | The name of the snapshot. |
| tags? | Cfn[] | An array of Tag objects to associate with the snapshot. |
namespaceName?
Type:
string
(optional)
The name of the namepsace.
retentionPeriod?
Type:
number
(optional)
The retention period of the snapshot created by the scheduled action.
snapshotName?
Type:
string
(optional)
The name of the snapshot.
tags?
Type:
Cfn[]
(optional)
An array of Tag objects to associate with the snapshot.

.NET
Go
Java
Python
TypeScript