Bird
0
0

Which of the following is the correct JSON snippet to set a burst limit of 200 in API Gateway throttling?

easy📝 Syntax Q3 of 15
AWS - API Gateway
Which of the following is the correct JSON snippet to set a burst limit of 200 in API Gateway throttling?
A{"throttle": {"burst": 200}}
B{"throttle": {"burstLimit": 200}}
C{"rateLimit": 200}
D{"limit": {"burstLimit": 200}}
Step-by-Step Solution
Solution:
  1. Step 1: Review API Gateway throttling JSON format

    The correct key for burst limit is "burstLimit" inside "throttle" object.
  2. Step 2: Match correct JSON snippet

    {"throttle": {"burstLimit": 200}} correctly uses {"throttle": {"burstLimit": 200}} syntax.
  3. Final Answer:

    {"throttle": {"burstLimit": 200}} -> Option B
  4. Quick Check:

    Correct burstLimit JSON = A [OK]
Quick Trick: Use "burstLimit" inside "throttle" for burst setting [OK]
Common Mistakes:
MISTAKES
  • Using incorrect key names like "burst"
  • Placing burstLimit outside throttle object
  • Confusing rateLimit with burstLimit

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes