Skip to content

Commit

Permalink
feat(core): Add a description of this feature to README.md in aws-cdk…
Browse files Browse the repository at this point in the history
…-lib.
  • Loading branch information
joe-king-sh committed Jul 7, 2022
1 parent 13920a2 commit 2b6703b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions packages/aws-cdk-lib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1019,6 +1019,16 @@ const stack = new Stack(app, 'StackName', {

By default, termination protection is disabled.

### Description

You can add a description of the stack in the same way as `StackProps`.

```ts
const stack = new Stack(app, 'StackName', {
description: 'This is a description.',
});
```

### CfnJson

`CfnJson` allows you to postpone the resolution of a JSON blob from
Expand Down

0 comments on commit 2b6703b

Please sign in to comment.