Bird
0
0

Which JSON snippet correctly configures a monthly budget alert for DynamoDB usage at $200?

easy📝 Syntax Q3 of 15
DynamoDB - Cost Optimization and Monitoring
Which JSON snippet correctly configures a monthly budget alert for DynamoDB usage at $200?
A{ "BudgetLimit": 200, "Notification": { "Threshold": 110, "Type": "FORECASTED" } }
B{ "BudgetLimit": 200, "Notification": { "Threshold": 90, "Type": "ACTUAL" } }
C{ "BudgetLimit": 200, "Notification": { "Threshold": 50, "Type": "ACTUAL" } }
D{ "BudgetLimit": 200, "Notification": { "Threshold": 200, "Type": "ACTUAL" } }
Step-by-Step Solution
Solution:
  1. Step 1: Understand BudgetLimit

    The budget limit is set to $200, which matches the requirement.
  2. Step 2: Check Notification Threshold

    Threshold at 90 means alert triggers at 90% of $200 = $180, which is a common alert point.
  3. Step 3: Confirm Notification Type

    Type 'ACTUAL' means alert triggers on actual spending, suitable for monitoring real costs.
  4. Final Answer:

    { "BudgetLimit": 200, "Notification": { "Threshold": 90, "Type": "ACTUAL" } } -> Option B
  5. Quick Check:

    Threshold under 100% and ACTUAL type alert [OK]
Quick Trick: Set threshold below 100% and use ACTUAL type [OK]
Common Mistakes:
MISTAKES
  • Setting threshold above 100% (won't trigger early alerts)
  • Using FORECASTED type when ACTUAL is needed
  • Setting threshold too low causing frequent alerts

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More DynamoDB Quizzes