interface CfnClusterSnapshotProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RDS.CfnClusterSnapshotProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#CfnClusterSnapshotProps |
Java | software.amazon.awscdk.services.rds.CfnClusterSnapshotProps |
Python | aws_cdk.aws_rds.CfnClusterSnapshotProps |
TypeScript | aws-cdk-lib » aws_rds » CfnClusterSnapshotProps |
Properties for defining a CfnClusterSnapshot.
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-lib';
const cfnClusterSnapshotProps: rds.CfnClusterSnapshotProps = {
dbClusterIdentifier: 'dbClusterIdentifier',
dbClusterSnapshotIdentifier: 'dbClusterSnapshotIdentifier',
// the properties below are optional
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
The identifier of the DB cluster to create a snapshot for.
dbClusterSnapshotIdentifier
Type:
string
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