AWS Certified Solutions Architect – Professional (SAP-C02) — Question 496

A company is migrating its on-premises IoT platform to AWS. The platform consists of the following components:

• A MongoDB cluster as a data store for all collected and processed IoT data.
• An application that uses Message Queuing Telemetry Transport (MQTT) to connect to IoT devices every 5 minutes to collect data.
• An application that runs jobs periodically to generate reports from the IoT data. The jobs take 120-600 seconds to finish running.
• A web application that runs on a web server. End users use the web application to generate reports that are accessible to the general public.

The company needs to migrate the platform to AWS to reduce operational overhead while maintaining performance.

Which combination of steps will meet these requirements with the LEAST operational overhead? (Choose three.)

Answer options

Correct answer: A, D, E

Explanation

Migrating the MongoDB cluster to Amazon DocumentDB (E) and using AWS IoT Core with AWS Lambda (D) provides a fully managed, serverless approach to data ingestion and storage, vastly reducing operational overhead. Using AWS Step Functions with Lambda tasks to output reports directly to an S3 bucket fronted by CloudFront (A) eliminates the need to manage web servers and handles the 120-600 second jobs easily within Lambda's 15-minute runtime limit. Managing EKS clusters, EC2 instances, or self-hosted MongoDB clusters (C, F) introduces significantly higher operational overhead, while Lambda layers (B) are not designed for message buffering.