in packages/cdk/lib/universal-infra.ts [9:25]
constructor(scope: App, id: string, props: GuStackProps) {
super(scope, id, props);
const layerBucket = new GuS3Bucket(this, 'LayerBucket', {
bucketName: 'transcription-service-lambda-layers',
app: 'transcription-service-universal-infra',
});
new StringParameter(this, 'ExportFunctionName', {
parameterName: `/investigations/transcription-service/lambdaLayerBucketArn`,
stringValue: layerBucket.bucketArn,
});
new CfnOutput(this, 'LayerBucket', {
value: layerBucket.bucketArn,
});
}