interface CfnClusterSnapshotMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RDS.CfnClusterSnapshotMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrds#CfnClusterSnapshotMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.rds.CfnClusterSnapshotMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_rds.CfnClusterSnapshotMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_rds » CfnClusterSnapshotMixinProps |
Properties for CfnClusterSnapshotPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-clustersnapshot.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rds as rds } from '@aws-cdk/cfn-property-mixins';
const cfnClusterSnapshotMixinProps: rds.CfnClusterSnapshotMixinProps = {
dbClusterIdentifier: 'dbClusterIdentifier',
dbClusterSnapshotIdentifier: 'dbClusterSnapshotIdentifier',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| db | string | The identifier of the DB cluster to create a snapshot for. |
| db | string | The identifier for the DB cluster snapshot. |
| tags? | Cfn[] | The tags to be assigned to the DB cluster snapshot. |
dbClusterIdentifier?
Type:
string
(optional)
The identifier of the DB cluster to create a snapshot for.
dbClusterSnapshotIdentifier?
Type:
string
(optional)
The identifier for the DB cluster snapshot.
Must contain from 1 to 63 letters, numbers, or hyphens. First character must be a letter. Can't end with a hyphen or contain two consecutive hyphens.
tags?
Type:
Cfn[]
(optional)
The tags to be assigned to the DB cluster snapshot.

.NET
Go
Java
Python
TypeScript