
Explanation:
Option C is the correct answer. Amazon EventBridge (formerly CloudWatch Events) allows you to set up rules that can trigger on a schedule using a cron or rate expression. This is an automated and fully serverless way to invoke the Lambda function every 10 minutes without the need to manage any additional infrastructure.
How can a serverless application invoke an AWS Lambda function every 10 minutes without managing servers?
A
By deploying an Amazon EC2 instance and setting up a cron job.
B
By setting an environment variable in the Lambda function.
C
By using Amazon EventBridge with a scheduled rule.
D
By creating an Amazon SNS topic with a subscription to the Lambda function.
No comments yet.