| 2 | import { Construct } from 'constructs'; |
| 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 |
| 13 | const devEnv = { |
nothing calls this directly
no outgoing calls
no test coverage detected