Bird
0
0

Which of the following correctly represents the syntax to set a rate limit of 100 requests per second in AWS API Gateway throttling settings?

easy📝 Syntax Q12 of 15
AWS - API Gateway
Which of the following correctly represents the syntax to set a rate limit of 100 requests per second in AWS API Gateway throttling settings?
Athrottle(100, 200)
Brate_limit = 100, burst_limit = 200
CrateLimit: 100, burstLimit: 200
DsetRate(100), setBurst(200)
Step-by-Step Solution
Solution:
  1. Step 1: Identify correct AWS API Gateway throttling syntax

    The correct syntax uses camelCase keys like rateLimit and burstLimit with numeric values.
  2. Step 2: Compare options to AWS documentation style

    rateLimit: 100, burstLimit: 200 matches the correct syntax format; others use invalid or pseudo-code styles.
  3. Final Answer:

    rateLimit: 100, burstLimit: 200 -> Option C
  4. Quick Check:

    Correct syntax uses camelCase keys [OK]
Quick Trick: AWS uses camelCase keys like rateLimit, burstLimit [OK]
Common Mistakes:
  • Using underscores instead of camelCase
  • Using function calls instead of key-value pairs
  • Confusing method names with settings

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes