Weather alerts published to Amazon SNS must fan into a Lambda that opens incident tickets. How should the developer connect them?
Select an answer to reveal the explanation.
Short Explanation
SNS is the town loudspeaker; subscribe Lambda and each alert can open a ticket without the weather publisher knowing about your tracker. Tailing a log file on one EC2 box is not fan-in notification processing.
Full Explanation
Amazon SNS supports Lambda subscriptions so published messages invoke the function for fan-in processing such as creating incident tickets. Glacier-only archival, EC2 log tailing, and scraping HTML from API requests are not the SNS-to-Lambda integration pattern.