()
| 41 | } |
| 42 | |
| 43 | func main() { |
| 44 | app := awscdk.NewApp(nil) |
| 45 | |
| 46 | NewLambdaCronStack(app, "LambdaCronStack", &LambdaCronStackProps{ |
| 47 | awscdk.StackProps{ |
| 48 | Env: env(), |
| 49 | }, |
| 50 | }) |
| 51 | |
| 52 | app.Synth(nil) |
| 53 | } |
| 54 | |
| 55 | // env determines the AWS environment (account+region) in which our stack is to |
| 56 | // be deployed. For more information see: https://docs.aws.amazon.com/cdk/latest/guide/environments.html |
nothing calls this directly
no test coverage detected