This is a blank project for CDK development with JavaScript.
The cdk.json file tells the CDK Toolkit how to execute your app. The build step is not required when using JavaScript.
npm run testperform the jest unit testscdk deploydeploy this stack to your default AWS account/regioncdk diffcompare deployed stack with current statecdk synthemits the synthesized CloudFormation template
EventbriteFetchAllOrdersLambda -> EventbriteOrdersQueue EventbriteWebhookLambda -> EventbriteOrderQueue EventbriteOrderQueue -> EventbriteProcessOrderLambda
/ ├── assets/ (code and config referenced by infra) │ └── email/ (email templates) │ └── lambda/ (lambda code) │ ├── lib/ (shared lambda code) │ └── endpoints/ (lambda api endpoints) │ └── workers/ (lambda event processrs and cron workers) ├── bin/ (utility scripts) ├── lib/ (cdk code) │ ├── aspects/ (cdk aspects) │ ├── constructs/ (cdk constructs) │ └── stacks/ (cdk stacks) └── main.js