interface DBInstanceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.DocDB.DBInstanceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsdocdb#DBInstanceReference |
Java | software.amazon.awscdk.interfaces.docdb.DBInstanceReference |
Python | aws_cdk.interfaces.aws_docdb.DBInstanceReference |
TypeScript | aws-cdk-lib » interfaces » aws_docdb » DBInstanceReference |
A reference to a DBInstance 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 interfaces_docdb } from 'aws-cdk-lib/interfaces';
const dBInstanceReference: interfaces_docdb.DBInstanceReference = {
dbInstanceId: 'dbInstanceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| db | string | The Id of the DBInstance resource. |
dbInstanceId
Type:
string
The Id of the DBInstance resource.

.NET
Go
Java
Python
TypeScript