in usecases/guest-webapp-sample/lib/blea-key-app-stack.ts [7:17]
constructor(scope: cdk.Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props);
// CMK
const kmsKey = new kms.Key(this, 'Key', {
enableKeyRotation: true,
description: 'for App',
alias: `${id}-for-app`,
});
this.kmsKey = kmsKey;
}