constructor()

in lib/proxy.ts [24:31]


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

        this.props = props;

        this.cluster = this.createCluster();
        this.service = this.createService();
    }