interface DBClusterReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.RDS.DBClusterReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsrds#DBClusterReference |
Java | software.amazon.awscdk.interfaces.rds.DBClusterReference |
Python | aws_cdk.interfaces.aws_rds.DBClusterReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_rds } from 'aws-cdk-lib/interfaces';
const dBClusterReference: interfaces_aws_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