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