GlobalClusterReference
- class aws_cdk.interfaces.aws_docdb.GlobalClusterReference(*, global_cluster_arn, global_cluster_identifier)
Bases:
objectA reference to a GlobalCluster resource.
- Parameters:
global_cluster_arn (
str) – The ARN of the GlobalCluster resource.global_cluster_identifier (
str) – The GlobalClusterIdentifier of the GlobalCluster 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_docdb as interfaces_docdb global_cluster_reference = interfaces_docdb.GlobalClusterReference( global_cluster_arn="globalClusterArn", global_cluster_identifier="globalClusterIdentifier" )
Attributes
- global_cluster_arn
The ARN of the GlobalCluster resource.
- global_cluster_identifier
The GlobalClusterIdentifier of the GlobalCluster resource.