Scheduled events are suppose to happen at regular intervals based on a rule set. Scheduled events are used to execute Lambda function after an interval which is defined in cloudwatch services. They are best used for working on cron jobs along with AWS Lambda. This chapter will explain with simple example how to send mail after every 5 minutes using scheduled events and AWS Lambda. Requisites The requirements for using Lambda function with Scheduled events are as follows − Verify email id using AWS SES Create Role to use AWS SES, Cloudwatch and AWS Lambda Create Lambda Function to send email Add rule for scheduled events from AWS CloudWatch Example The example that we are going to consider will add CloudWatch event to the AWS Lambda function. Cloudwatch will trigger AWS Lambda based on the time pattern attached to it. For Example, in the example below we have used 5 minutes as the trigger. It means for every 5 minutes, AWS Lambda will be triggered and AWS Lambda will send mail wheneve