Artem Kalantai
05/24/2021, 4:13 PMnew cdk.CfnOutput(stack, "core", {
value: exporedValue,
});
Frank
new cdk.CfnOutput(stack, "core", {
value: exportedValue,
exportName: 'MyExport',
});
Alternatively inside a stack:
this.addOutputs({
core: { value: exportedValue, exportName: "MyExport" },
... // you can add other outputs here in one shot
});