constructor()

in lib/networking.ts [17:24]


    constructor(scope: cdk.Construct, id: string, props: NetworkingProps) {
        super(scope, id);

        this.props = props;
        
        this.vpc = this.createVpc();
        this.apigwVpce = this.createApigwVpcEndpoint();
    }