1. As part of modernization, a team wants to replace a batch-oriented monolith component with event-driven, serverless functions triggered by new data arriving in S3. Which service should the architect recommend?
- A. AWS Lambda triggered by S3 event notifications✓ Correct
- B. A cron job on a persistent EC2 instance polling S3
- C. Amazon Redshift Spectrum
- D. AWS Direct Connect
Explanation
Lambda invoked by S3 event notifications gives event-driven, serverless processing that scales automatically and bills per use — a common modernization pattern. A polling EC2 cron job (B) is server-based and less responsive, Redshift Spectrum (C) queries S3 data for analytics, and Direct Connect (D) is connectivity.