interface DBSubnetGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.RDS.DBSubnetGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsrds#DBSubnetGroupReference |
Java | software.amazon.awscdk.interfaces.rds.DBSubnetGroupReference |
Python | aws_cdk.interfaces.aws_rds.DBSubnetGroupReference |
TypeScript | aws-cdk-lib » interfaces » aws_rds » 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_rds as interfaces_rds } from 'aws-cdk-lib/interfaces';
const dBSubnetGroupReference: interfaces_rds.DBSubnetGroupReference = {
dbSubnetGroupName: 'dbSubnetGroupName',
};
Properties
| Name | Type | Description |
|---|---|---|
| db | string | The DBSubnetGroupName of the DBSubnetGroup resource. |
dbSubnetGroupName
Type:
string
The DBSubnetGroupName of the DBSubnetGroup resource.

.NET
Go
Java
Python
TypeScript