AWS Certified Developer – Associate — Question 145

A developer is writing a serverless application that requires an AWS Lambda function to be invoked every 10 minutes.

What is an automated and serverless way to invoke the function?

Answer options

Correct answer: C

Explanation

The correct answer is C because Amazon EventBridge allows for scheduled events to trigger AWS Lambda functions in a serverless manner. Option A involves using an EC2 instance, which contradicts the serverless requirement, while option B does not trigger the function automatically. Option D relies on SNS, which is not designed for periodic invocation but rather for event-driven messaging.