Q13 — AWS DVA-C02 Ch.3

Question 13 of 100 | ← Chapter 3

A retail company is developing a serverless application running on AWS. The application uses an AWS Lambda function to calculate order success rates, with data stored in an Amazon DynamoDB table. The developer wants to invoke the Lambda function efficiently every 15 minutes. Which solution requires the least development effort to meet this requirement?

Correct Answer: A. Create an Amazon EventBridge rule with a rate expression that runs every 15 minutes and configure the Lambda function as the rule’s target.

Explanation

Option A leverages Amazon EventBridge’s built-in rate-based scheduling, requiring minimal configuration and zero infrastructure management. Options B and D introduce unnecessary EC2 dependencies and operational overhead. Option C adds complexity beyond simple periodic invocation. Therefore, option A delivers the required functionality with the least development effort.