A company wants to receive an email notification about critical findings in AWS Security Hub. The company does not have an existing architecture that supports this functionality. Which solution will meet the requirement?
Show Answer & Explanation
Correct Answer: C. Create an Amazon EventBridge rule to detect critical Security Hub findings. Create an Amazon Simple Notification Service (Amazon SNS) topic as the target of the EventBridge rule. Subscribe an email endpoint to the SNS topic to receive published messages.
Why C is correct: Amazon EventBridge is the native AWS service for event-driven architectures and integrates directly with AWS Security Hub. You can create an EventBridge rule with a filter pattern to detect critical findings (e.g., filtering by severity or specific finding types). EventBridge can then target an SNS topic, which handles the email notification through subscribed endpoints. This is the simplest, most direct solution using AWS-native integrations without requiring custom Lambda code. Why A is wrong: This solution requires writing and maintaining custom Lambda function code to identify critical findings, which adds unnecessary complexity and operational overhead. EventBridge can filter events natively without Lambda. While this would work, it's not the simplest or most maintainable solution compared to using EventBridge's built-in filtering capabilities. Why B is wrong: Amazon Kinesis Data Firehose is designed for streaming data delivery to destinations like S3, Redshift, or Elasticsearch, not for sending email notifications. Firehose does not support email addresses as a destination. Additionally, while Firehose integrates with EventBridge, it's designed for high-throughput data ingestion and transformation, which is overly complex for simple notifications. Why D is wrong: Amazon SES (Simple Email Service) is not a target type for EventBridge rules. EventBridge cannot directly invoke SES as a target. Valid EventBridge targets include SNS, SQS, Lambda, Step Functions, and others, but not SES directly. Additionally, there's no such thing as an "SES topic"—SNS has topics, not SES. This answer confuses SES with SNS.