Skip to content

Commit

Permalink
fix(cdk): add description
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbyheart committed Jun 18, 2024
1 parent 88481f2 commit 11e1054
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cdk/MapStack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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')

Expand Down

0 comments on commit 11e1054

Please sign in to comment.