interface DBSubnetGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Neptune.DBSubnetGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsneptune#DBSubnetGroupReference |
Java | software.amazon.awscdk.interfaces.neptune.DBSubnetGroupReference |
Python | aws_cdk.interfaces.aws_neptune.DBSubnetGroupReference |
TypeScript | aws-cdk-lib » interfaces » aws_neptune » 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_neptune as interfaces_aws_neptune } from 'aws-cdk-lib/interfaces';
const dBSubnetGroupReference: interfaces_aws_neptune.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