constructor()

in lib/aws-dns.ts [18:29]


  constructor(scope: core.Construct, id: string, props: DnsProps) {
    super(scope, id);
    
    const zone = new route53.PrivateHostedZone(this, 'HostedZone', {
        zoneName: props.TopLevelDomain,
        vpc: props.ManagmentVPC
    });
    zone.addVpc(props.ProductionVpc);
    zone.addVpc(props.DevelopmentVpc)


  }