diff --git a/cdk/MapStack.ts b/cdk/MapStack.ts index 6eefd0f..10ab2a3 100644 --- a/cdk/MapStack.ts +++ b/cdk/MapStack.ts @@ -4,7 +4,9 @@ import { MapResources } from './MapResources.js' export class MapStack extends Stack { public constructor(parent: App, stackName: string) { - super(parent, stackName) + super(parent, stackName, { + description: 'Provides Amazon Location Service Map resources', + }) const map = new MapResources(this, 'map')