Q8 — AWS DVA-C02 Ch.2

Question 8 of 100 | ← Chapter 2

A developer is building a serverless application that requires an AWS Lambda function to be invoked every 10 minutes. What is an automated and serverless way to invoke this function?

Correct Answer: C. Create an Amazon EventBridge rule that runs on a scheduled interval to invoke the Lambda function.

Explanation

Option C recommends using an Amazon EventBridge rule, which can invoke a Lambda function on a scheduled basis. This is an automated and serverless approach requiring no infrastructure maintenance or management. Other options involve using cron jobs (A), environment variables (B), or Amazon SNS topics with timers (D), none of which provide the same level of automation and serverless operation as an EventBridge rule for scheduling tasks. 【Lantern Certification provided by: swufelp1999】