ReplicationSubnetGroup
Source:
src/AWS/DMS/ReplicationSubnetGroup.ts
A DMS replication subnet group — the set of VPC subnets a replication instance can be launched into. Must cover at least two Availability Zones. Free and fast to create.
Creating a Subnet Group
Section titled “Creating a Subnet Group”const subnetGroup = yield* ReplicationSubnetGroup("Migration", { description: "DMS replication subnets", subnetIds: [subnetA.subnetId, subnetB.subnetId],});