Exam SOA-C02 All QuestionsBrowse all questions from this 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?

    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
marcelodbaOption: A

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

jipark

S3 itself support SNS

edu_anadatOption: A

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

aaaaaaaa

10cc6baOption: A

A only

74d3443

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

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