in src/main.ts [16:21]
constructor(scope: Construct, id: string, props: StackProps = {}) {
super(scope, id, props);
const awscliLayer = new customlayer.AwsCliLayer(this, 'CustomAwsCliLayer');
new CfnOutput(this, 'LayerVersionArn', { value: awscliLayer.layerVersionArn });
}