Bird
0
0

Which of the following is the correct JSON structure to define a usage plan throttle rate limit of 50 requests per second?

easy📝 Syntax Q3 of 15
AWS - API Gateway
Which of the following is the correct JSON structure to define a usage plan throttle rate limit of 50 requests per second?
A{"throttle": {"rateLimit": 50}}
B{"quota": {"rateLimit": 50}}
C{"throttle": {"limit": 50}}
D{"rateLimit": 50}
Step-by-Step Solution
Solution:
  1. Step 1: Identify correct key for throttling

    The correct key for rate limiting is "throttle" with a nested "rateLimit".
  2. Step 2: Validate JSON structure

    {"throttle": {"rateLimit": 50}} correctly nests "rateLimit" inside "throttle" with value 50.
  3. Final Answer:

    {"throttle": {"rateLimit": 50}} -> Option A
  4. Quick Check:

    Throttle rate limit JSON = {"throttle": {"rateLimit": 50}} [OK]
Quick Trick: Throttle settings use "throttle" and "rateLimit" keys [OK]
Common Mistakes:
  • Using "quota" instead of "throttle" for rate limit
  • Incorrect nesting of keys
  • Missing the "throttle" wrapper

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes