DBClusterReference

class aws_cdk.interfaces.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.interfaces import aws_rds as interfaces_aws_rds

d_bCluster_reference = interfaces_aws_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.