From 11e1054d250645cf5569217aac1886c6aadc7ae8 Mon Sep 17 00:00:00 2001 From: Markus Tacker Date: Tue, 18 Jun 2024 11:50:27 +0200 Subject: [PATCH] fix(cdk): add description --- cdk/MapStack.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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')