protected output()

in lib/base/construct-base.ts [9:14]


    protected output(id: string, value: string) {
        let output = new cdk.CfnOutput(this, id, {
            value: value
        });
        output.overrideLogicalId(id);
    }