DBClusterReference
- class aws_cdk.aws_rds.DBClusterReference(*, db_cluster_arn, db_cluster_identifier)
Bases:
object
A reference to a DBCluster resource.
- Parameters:
db_cluster_arn (
str
) – The ARN of the DBCluster resource.db_cluster_identifier (
str
) – The DBClusterIdentifier of the DBCluster 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 import aws_rds as rds d_bCluster_reference = rds.DBClusterReference( db_cluster_arn="dbClusterArn", db_cluster_identifier="dbClusterIdentifier" )
Attributes
- db_cluster_arn
The ARN of the DBCluster resource.
- db_cluster_identifier
The DBClusterIdentifier of the DBCluster resource.