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

A developer has created a data collection application that uses Amazon API Gateway, AWS Lambda, and Amazon S3. The application’s users periodically upload data files and wait for the validation status to be reflected on a processing dashboard. The validation process is complex and time-consuming for large files.

Some users are uploading dozens of large files and have to wait and refresh the processing dashboard to see if the files have been validated. The developer must refactor the application to immediately update the validation result on the user’s dashboard without reloading the full dashboard.

What is the MOST operationally efficient solution that meets these requirements?

Answer options

Correct answer: A

Explanation

Option A is the most operationally efficient solution because it uses WebSocket connections to push updates in real-time to the user interface without needing a full dashboard reload. Option B introduces unnecessary complexity by requiring an EC2 instance to manage WebSocket connections, which is less efficient. Option C relies on email notifications, which do not provide real-time updates. Option D suggests using DynamoDB Streams and SNS, which is more complex and less direct than using a WebSocket for immediate updates.