DBSubnetGroup
Source:
src/AWS/Neptune/DBSubnetGroup.ts
An Amazon Neptune DB subnet group — the set of VPC subnets a Neptune cluster and its instances are placed into. Neptune is VPC-only, so a subnet group spanning at least two Availability Zones is required before a cluster can be created.
Creating a Subnet Group
Section titled “Creating a Subnet Group”const subnetGroup = yield* DBSubnetGroup("NeptuneSubnets", { subnetIds: [subnetA.subnetId, subnetB.subnetId],});