From 6b0c195d1728c37683e8e045a0187a01f11d16f0 Mon Sep 17 00:00:00 2001 From: Garry Galinsky Date: Sun, 29 Sep 2024 05:43:06 -0700 Subject: [PATCH] adding stack description --- lib/aws-ocpp-gateway-stack.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/aws-ocpp-gateway-stack.ts b/lib/aws-ocpp-gateway-stack.ts index 9739077..e3179ec 100644 --- a/lib/aws-ocpp-gateway-stack.ts +++ b/lib/aws-ocpp-gateway-stack.ts @@ -28,7 +28,11 @@ interface AwsOcppGatewayStackProps extends cdk.StackProps { export class AwsOcppGatewayStack extends cdk.Stack { constructor(scope: Construct, id: string, props?: AwsOcppGatewayStackProps) { - super(scope, id, props); + super(scope, id, { + ...props, + description: + 'SO9522: This stack deploys resources for OCPP Gateway application.', + }); const vpcCidr = '10.0.0.0/16'; const tcpPort = 8080;