Q63 — AWS DOP-C02 Ch.2

Question 63 of 100 | ← Chapter 2

A company has multiple development teams working in a shared AWS account. When resource creation approaches account service limits, senior managers want to receive alerts via a third-party API.

Correct Answer: B. Deploy an AWS Lambda function to refresh AWS Trusted Advisor checks and configure an Amazon EventBridge rule to run the Lambda function periodically. Create another EventBridge rule with an event pattern matching Trusted Advisor events and target the same Lambda function. In the target Lambda function, notify senior managers.

Explanation

AWS Trusted Advisor provides preconfigured checks—including service limit monitoring—that emit events when resources approach quotas. Amazon EventBridge can natively match these Trusted Advisor events using event patterns, enabling automated alerting without custom logic to evaluate each service’s limits. Option B leverages this integration: the Lambda function only handles notification delivery, not resource assessment. Options A and D require custom code to evaluate limits across services. Option C incorrectly relies on AWS Health Dashboard, which does not report service quota status. AWS documentation confirms Trusted Advisor events are supported in EventBridge for automated responses.