By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.
(For AWS Solutions Architect – Associate & Real-World Cloud Engineers)
You’re a cloud engineer at a mid-sized SaaS company. Your CTO just asked: "Why did our RDS instance fail last night? And why are we paying $2K/month for unused EBS volumes?"
You could dig through CloudWatch logs, manually audit every resource, and hope you catch everything—or you could use AWS Trusted Advisor and AWS Health Dashboard to get instant, actionable insights.
Why this matters in production:- Ignoring Trusted Advisor? You’ll waste 30-50% of your AWS bill on unused resources (EBS volumes, idle EC2 instances, over-provisioned RDS).- Ignoring AWS Health Dashboard? You’ll blame your team for outages that are AWS’s fault (e.g., a regional S3 outage) and waste hours troubleshooting.- Using both correctly? You’ll cut costs, prevent security breaches, and respond to incidents faster—without manual audits.
Real-world scenario:You inherit a legacy AWS account with 100+ EC2 instances, 50 RDS databases, and 200 S3 buckets. Your boss wants: 1. A cost reduction plan (cut waste by 40%).2. A security hardening report (fix public S3 buckets, open security groups).3. A real-time alert system for AWS outages affecting your workloads.
You’ll use Trusted Advisor for #1 and #2, and AWS Health Dashboard for #3.
✅ AWS account with IAM admin permissions (or at least TrustedAdvisorReadOnlyAccess and HealthReadOnlyAccess).✅ AWS CLI installed (aws --version to verify).✅ Business or Enterprise Support (for full Trusted Advisor checks—free tier is limited).
TrustedAdvisorReadOnlyAccess
HealthReadOnlyAccess
aws --version
Goal: Find and delete unused EBS volumes costing you $50/month.
# List all unattached EBS volumes aws ec2 describe-volumes --filters Name=status,Values=available --query "Volumes[*].{ID:VolumeId,Size:Size,Type:VolumeType}" --output table # Delete a specific volume (replace vol-1234567890) aws ec2 delete-volume --volume-id vol-0123456789abcdef0
Expected output:
{ "Return": true }
Goal: Get Slack alerts when AWS has an outage affecting your resources.
# Create a rule to trigger on AWS Health events aws events put-rule \ --name "AWSHealthAlerts" \ --event-pattern '{ "source": ["aws.health"], "detail-type": ["AWS Health Event"] }' \ --state "ENABLED" # Add a target (e.g., SNS topic for Slack) aws events put-targets \ --rule "AWSHealthAlerts" \ --targets "Id"="1","Arn"="arn:aws:sns:us-east-1:123456789012:SlackAlerts"
{ "FailedEntryCount": 0, "FailedEntries": [] }
? AWS Health Alert: EC2 degraded performance in us-east-1 (affects your instances: i-1234567890)
❌ AWS Health Dashboard (only shows outages, not cost waste)
"Your RDS instance is failing, but AWS Service Health shows no outages. What should you check?"
❌ Trusted Advisor (doesn’t show real-time failures)
"How can you get alerts when AWS has an outage affecting your resources?"
"You need to reduce AWS costs by 30% without impacting performance. Which service should you use?"- ✅ Trusted Advisor (Cost Optimization checks)- ❌ AWS Health Dashboard (doesn’t help with cost) - ❌ AWS Budgets (only alerts on spending, doesn’t find waste)
Why?- Trusted Advisor identifies specific waste (e.g., "Delete these 5 EBS volumes").- AWS Budgets only alerts you when you’re over budget—it doesn’t tell you why.
You’re a cloud engineer at a startup. Your CTO says: "Our AWS bill is $5K/month, but we only have 10 EC2 instances. Find the waste and delete it—without breaking anything."
Your task:1. Use Trusted Advisor to find cost-saving opportunities.2. Delete 3 unused resources (EBS volumes, snapshots, or idle EC2).3. Verify the savings in Cost Explorer.
bash aws ec2 delete-volume --volume-id vol-0123456789abcdef0 aws ec2 delete-volume --volume-id vol-0abcdef1234567890 aws ec2 delete-volume --volume-id vol-9876543210fedcba
Why it works:- Trusted Advisor flags unused resources that AWS billing doesn’t.- Deleting unattached EBS volumes = instant cost savings (no downtime).
aws support describe-trusted-advisor-checks
aws support describe-trusted-advisor-check-result --check-id eW7HH0l7J9
aws health describe-events
aws health describe-affected-entities --event-arn arn:aws:health:...
aws.health
Join 4M+ learners. Unlock unlimited quizzes, wrong-answer tracking, flashcards + reminders, study guides, and 1-on-1 challenges.