0
0
AWScloud~20 mins

Budgets and cost anomaly detection in AWS - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
AWS Budgets and Cost Anomaly Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding AWS Budgets Thresholds

You set an AWS budget with a threshold of 80% for your monthly cost. What happens when your actual cost reaches 85% of the budget?

AYour budget resets immediately to zero and starts a new cycle.
BYou receive a notification alerting you that you have exceeded 80% of your budget.
CAWS automatically stops all running resources to prevent overspending.
DNo action occurs until the budget reaches 100%.
Attempts:
2 left
💡 Hint

Think about what AWS Budgets are designed to do regarding notifications.

service_behavior
intermediate
2:00remaining
AWS Cost Anomaly Detection Behavior

You have enabled AWS Cost Anomaly Detection for your account. What is the primary behavior of this service?

AIt automatically fixes cost anomalies by shutting down resources.
BIt deletes unused resources to reduce costs.
CIt detects unusual spending patterns and sends alerts for investigation.
DIt increases your budget limits automatically when anomalies are detected.
Attempts:
2 left
💡 Hint

Consider what anomaly detection tools usually do in monitoring systems.

Configuration
advanced
3:00remaining
Configuring an AWS Budget with Multiple Thresholds

You want to create an AWS budget that sends notifications at 50%, 80%, and 100% of your monthly cost limit. Which JSON snippet correctly defines these thresholds in the AWS Budgets configuration?

A{ "BudgetLimit": { "Amount": "1000", "Unit": "USD" }, "Notifications": [ { "Threshold": 50, "ComparisonOperator": "GREATER_THAN", "NotificationType": "ACTUAL" }, { "Threshold": 80, "ComparisonOperator": "GREATER_THAN", "NotificationType": "ACTUAL" }, { "Threshold": 100, "ComparisonOperator": "GREATER_THAN", "NotificationType": "ACTUAL" } ] }
B{ "BudgetLimit": { "Amount": "1000", "Unit": "USD" }, "Notifications": [ { "Threshold": "50%", "ComparisonOperator": "GREATER_THAN", "NotificationType": "ACTUAL" }, { "Threshold": "80%", "ComparisonOperator": "GREATER_THAN", "NotificationType": "ACTUAL" }, { "Threshold": "100%", "ComparisonOperator": "GREATER_THAN", "NotificationType": "ACTUAL" } ] }
C{ "BudgetLimit": { "Amount": "1000", "Unit": "USD" }, "Notifications": [ { "Threshold": 0.5, "ComparisonOperator": "GREATER_THAN", "NotificationType": "ACTUAL" }, { "Threshold": 0.8, "ComparisonOperator": "GREATER_THAN", "NotificationType": "ACTUAL" }, { "Threshold": 1.0, "ComparisonOperator": "GREATER_THAN", "NotificationType": "ACTUAL" } ] }
D{ "BudgetLimit": { "Amount": "1000", "Unit": "USD" }, "Notifications": [ { "Threshold": 50, "ComparisonOperator": "LESS_THAN", "NotificationType": "ACTUAL" }, { "Threshold": 80, "ComparisonOperator": "LESS_THAN", "NotificationType": "ACTUAL" }, { "Threshold": 100, "ComparisonOperator": "LESS_THAN", "NotificationType": "ACTUAL" } ] }
Attempts:
2 left
💡 Hint

Threshold values should be numbers representing percentages without symbols, and comparison operator should detect when cost exceeds the threshold.

security
advanced
2:00remaining
IAM Permissions for AWS Cost Anomaly Detection

Which IAM policy permission is required to allow a user to view AWS Cost Anomaly Detection findings but not modify them?

A"ce:DeleteAnomalySubscription"
B"ce:GetAnomalySubscriptions"
C"ce:UpdateAnomalySubscription"
D"ce:GetAnomalies"
Attempts:
2 left
💡 Hint

Think about permissions that allow reading data but not changing it.

Best Practice
expert
3:00remaining
Optimizing Cost Anomaly Detection for Multiple Linked Accounts

You manage a consolidated billing family with multiple linked AWS accounts. To optimize cost anomaly detection across all accounts, which approach is best?

AEnable Cost Anomaly Detection only in the payer account to monitor all linked accounts centrally.
BEnable Cost Anomaly Detection separately in each linked account to get detailed alerts per account.
CDisable Cost Anomaly Detection and rely on manual cost reviews for linked accounts.
DEnable Cost Anomaly Detection in the payer account and also in each linked account for redundancy.
Attempts:
2 left
💡 Hint

Consider how consolidated billing and central monitoring work together.