SOA-C02 Exam QuestionsBrowse all questions from this exam

SOA-C02 Exam - Question 124


A SysOps administrator needs to develop a solution that provides email notification and inserts a record into a database every time a file is put into an Amazon S3 bucket.

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

Show Answer
Correct Answer: A

The most operationally efficient solution is to set up an S3 event notification that targets an Amazon Simple Notification Service (Amazon SNS) topic. This allows for a single notification mechanism from which multiple actions can be triggered. By creating two subscriptions for the SNS topic, one can efficiently send the email notification while the other invokes an AWS Lambda function to insert the record into the database. This method effectively separates the two processes while maintaining simplicity and operational efficiency.

Discussion

5 comments
Sign in to comment
marcelodbaOption: A
Nov 27, 2022

https://aws.amazon.com/pt/premiumsupport/knowledge-center/lambda-subscribe-sns-topic-same-account/

jipark
Aug 14, 2023

S3 itself support SNS

edu_anadatOption: A
Dec 25, 2022

You can't set up two S3 event notifications with the same Event types. But it's possible configure Lambda function, without SNS, in S3 event notifications

michaldavidOption: A
Dec 11, 2022

aaaaaaaa

74d3443
Dec 30, 2023

A and D can be correct answer. IMO the term "Operationally Efficient" is a bit confusing in this scenario. I would go for A to manage one single notification from the source into a fan out strategy where I can handle the exception in SNS.

74d3443
Dec 30, 2023

Please cancel this comment, I misread the D option. Is A for sure.

10cc6baOption: A
Jul 12, 2024

A only