Schedule AWS Lambda Function with CDK
In this tutorial, i'm gonna show you how to schedule a lambda using CloudWatch Events with CDK
Make a new project
Let's create the main folder of the project
mkdir triggerLambda
cd triggerLambda
npm init -y
Then install CDK and aws-lambda package
np...
crunchcrunch.me2 min read