ClusterSnapshotReference

class aws_cdk.interfaces.aws_rds.ClusterSnapshotReference(*, db_cluster_snapshot_arn)

Bases: object

A reference to a ClusterSnapshot resource.

Parameters:

db_cluster_snapshot_arn (str) – The DBClusterSnapshotArn of the ClusterSnapshot resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.interfaces import aws_rds as interfaces_rds

cluster_snapshot_reference = interfaces_rds.ClusterSnapshotReference(
    db_cluster_snapshot_arn="dbClusterSnapshotArn"
)

Attributes

db_cluster_snapshot_arn

The DBClusterSnapshotArn of the ClusterSnapshot resource.