interface GlobalClusterReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.RDS.GlobalClusterReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsrds#GlobalClusterReference |
Java | software.amazon.awscdk.interfaces.rds.GlobalClusterReference |
Python | aws_cdk.interfaces.aws_rds.GlobalClusterReference |
TypeScript | aws-cdk-lib » interfaces » aws_rds » GlobalClusterReference |
A reference to a GlobalCluster 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 globalClusterReference: interfaces_rds.GlobalClusterReference = {
globalClusterIdentifier: 'globalClusterIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| global | string | The GlobalClusterIdentifier of the GlobalCluster resource. |
globalClusterIdentifier
Type:
string
The GlobalClusterIdentifier of the GlobalCluster resource.

.NET
Go
Java
Python
TypeScript