(scope: Construct, id: string, props: StackProps = {})
| 3 | |
| 4 | export class MyStack extends Stack { |
| 5 | constructor(scope: Construct, id: string, props: StackProps = {}) { |
| 6 | super(scope, id, props); |
| 7 | |
| 8 | // define resources here... |
| 9 | } |
| 10 | } |
| 11 | |
| 12 | // for development, use account/region from cdk cli |
nothing calls this directly
no outgoing calls
no test coverage detected