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

.NET
Go
Java
Python
TypeScript