LeetQuiz Logo
Privacy Policy•contact@leetquiz.com
© 2025 LeetQuiz All rights reserved.
AWS Certified Developer - Associate

AWS Certified Developer - Associate

Get started today

Ultimate access to all questions.


An IoT application sends data to a RESTful API via AWS Lambda. It must handle variable request volumes and potential retries without data inconsistencies. Which service and approach best ensures idempotency for API requests?

Exam-Like



Explanation:

The correct answer is B. Utilizing Amazon DynamoDB to store unique identifiers and checking them in the AWS Lambda function before processing ensures idempotency and handles variable request volumes effectively. DynamoDB is better suited than RDS in this context because IoT devices typically produce unstructured data. Moreover, DynamoDB is a NoSQL service that provides persistent storage, which is crucial for ensuring data consistency and handling retries without losing data. This approach ensures that duplicate requests are managed correctly without the risk of inconsistencies or data loss.

Powered ByGPT-5