Skip to content

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.

const subnetGroup = yield* ReplicationSubnetGroup("Migration", {
description: "DMS replication subnets",
subnetIds: [subnetA.subnetId, subnetB.subnetId],
});