()
| 66 | } |
| 67 | |
| 68 | func main() { |
| 69 | app := awscdk.NewApp(nil) |
| 70 | |
| 71 | LambdaContainerStack(app, "LambdaContainerStack", &LambdaContainerStackProps{ |
| 72 | awscdk.StackProps{ |
| 73 | Env: env(), |
| 74 | }, |
| 75 | }) |
| 76 | |
| 77 | app.Synth(nil) |
| 78 | } |
| 79 | |
| 80 | // env determines the AWS environment (account+region) in which our stack is to |
| 81 | // be deployed. For more information see: https://docs.aws.amazon.com/cdk/latest/guide/environments.html |
nothing calls this directly
no test coverage detected