public createSubnetGroup()

in lib/dms-replication.ts [47:54]


  public createSubnetGroup(props: DMSProps): CfnReplicationSubnetGroup {
    const subnet = new CfnReplicationSubnetGroup(this, 'dms-subnet-group', {
      replicationSubnetGroupIdentifier: props.replicationSubnetGroupIdentifier,
      replicationSubnetGroupDescription: 'Private subnets that have access to my data source and target',
      subnetIds: props.subnetIds,
    });
    return subnet;
  }