in lib/base/construct-base.ts [16:22]
protected outputAndExport(id: string, value: string, exportName: string) {
let output = new cdk.CfnOutput(this, id, {
value: value,
exportName: exportName
});
output.overrideLogicalId(id);
}