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