SOA-C03 · Question #6
A company's architecture team must receive immediate email notifications whenever new Amazon EC2 instances are launched in the company's main AWS production account. What should a CloudOps engineer…
The correct answer is B. Create an Amazon Simple Notification Service (Amazon SNS) topic and a subscription that uses. As per the AWS Cloud Operations and Event Monitoring documentation, the most efficient method for event-driven notification is to use Amazon EventBridge to detect specific EC2 API events and trigger a Simple Notification Service (SNS) alert. EventBridge continuously monitors…
Question
A company's architecture team must receive immediate email notifications whenever new Amazon EC2 instances are launched in the company's main AWS production account. What should a CloudOps engineer do to meet this requirement?
Options
- ACreate a user data script that sends an email message through a smart host connector. Include
- BCreate an Amazon Simple Notification Service (Amazon SNS) topic and a subscription that uses
- CCreate an Amazon Simple Queue Service (Amazon SQS) queue and a subscription that uses the
- DCreate an Amazon Simple Notification Service (Amazon SNS) topic. Configure AWS Systems
How the community answered
(25 responses)- A4% (1)
- B76% (19)
- C12% (3)
- D8% (2)
Explanation
As per the AWS Cloud Operations and Event Monitoring documentation, the most efficient method for event-driven notification is to use Amazon EventBridge to detect specific EC2 API events and trigger a Simple Notification Service (SNS) alert. EventBridge continuously monitors AWS service events, including RunInstances, which signals the creation of new EC2 instances. When such an event occurs, EventBridge sends it to an SNS topic, which then immediately emails subscribed recipients -- in this case, the architecture team. This combination provides real-time, serverless notifications with minimal management. SQS (Option C) is designed for queue-based processing, not direct user alerts. User data scripts (Option A) and custom polling with Lambda (Option D) introduce unnecessary operational complexity and latency. Hence, Option B is the correct and AWS-recommended CloudOps design for immediate launch
Topics
Community Discussion
No community discussion yet for this question.