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