interface CfnSnapshotMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RedshiftServerless.CfnSnapshotMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsredshiftserverless#CfnSnapshotMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.redshiftserverless.CfnSnapshotMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_redshiftserverless.CfnSnapshotMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_redshiftserverless » 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 { aws_redshiftserverless as redshiftserverless } from '@aws-cdk/cfn-property-mixins';
const cfnSnapshotMixinProps: redshiftserverless.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