interface DBClusterReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DocDB.DBClusterReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdocdb#DBClusterReference |
Java | software.amazon.awscdk.services.docdb.DBClusterReference |
Python | aws_cdk.aws_docdb.DBClusterReference |
TypeScript | aws-cdk-lib » aws_docdb » 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_docdb as docdb } from 'aws-cdk-lib';
const dBClusterReference: docdb.DBClusterReference = {
dbClusterId: 'dbClusterId',
};
Properties
| Name | Type | Description |
|---|---|---|
| db | string | The Id of the DBCluster resource. |
dbClusterId
Type:
string
The Id of the DBCluster resource.

.NET
Go
Java
Python
TypeScript