AWS Certified Developer – Associate (DVA-C02) — Question 152

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 can be configured to trigger Lambda functions on a regular schedule, making it fully automated and serverless. Option A is incorrect as it requires managing an EC2 instance, which defeats the serverless approach. Option B does not invoke the function but merely sets a variable, and option D involves SNS, which is not designed for scheduled invocations.