interface ClusterSnapshotReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.RDS.ClusterSnapshotReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsrds#ClusterSnapshotReference |
Java | software.amazon.awscdk.interfaces.rds.ClusterSnapshotReference |
Python | aws_cdk.interfaces.aws_rds.ClusterSnapshotReference |
TypeScript | aws-cdk-lib » interfaces » aws_rds » ClusterSnapshotReference |
A reference to a ClusterSnapshot resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rds as interfaces_rds } from 'aws-cdk-lib/interfaces';
const clusterSnapshotReference: interfaces_rds.ClusterSnapshotReference = {
dbClusterSnapshotArn: 'dbClusterSnapshotArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| db | string | The DBClusterSnapshotArn of the ClusterSnapshot resource. |
dbClusterSnapshotArn
Type:
string
The DBClusterSnapshotArn of the ClusterSnapshot resource.

.NET
Go
Java
Python
TypeScript