interface DBClusterReference
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.RDS.DBClusterReference | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#DBClusterReference | 
  Java | software.amazon.awscdk.services.rds.DBClusterReference | 
  Python | aws_cdk.aws_rds.DBClusterReference | 
  TypeScript  | aws-cdk-lib » aws_rds » DBClusterReference | 
A reference to a DBCluster 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 rds } from 'aws-cdk-lib';
const dBClusterReference: rds.DBClusterReference = {
  dbClusterArn: 'dbClusterArn',
  dbClusterIdentifier: 'dbClusterIdentifier',
};
Properties
| Name | Type | Description | 
|---|---|---|
| db | string | The ARN of the DBCluster resource. | 
| db | string | The DBClusterIdentifier of the DBCluster resource. | 
dbClusterArn
Type:
string
The ARN of the DBCluster resource.
dbClusterIdentifier
Type:
string
The DBClusterIdentifier of the DBCluster resource.

 .NET
 Go
 Java
 Python
 TypeScript