AWS - API GatewayWhich 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}Check Answer
Step-by-Step SolutionSolution:Step 1: Identify correct key for throttlingThe correct key for rate limiting is "throttle" with a nested "rateLimit".Step 2: Validate JSON structure{"throttle": {"rateLimit": 50}} correctly nests "rateLimit" inside "throttle" with value 50.Final Answer:{"throttle": {"rateLimit": 50}} -> Option AQuick 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 limitIncorrect nesting of keysMissing the "throttle" wrapper
Master "API Gateway" in AWS9 interactive learning modes - each teaches the same concept differentlyLearnWhyDeepVisualTryChallengeProjectRecallTime
More AWS Quizzes AWS Lambda - Creating a Lambda function - Quiz 4medium AWS Lambda - Lambda execution model - Quiz 6medium AWS Lambda - Lambda pricing model - Quiz 12easy Auto Scaling - Minimum, maximum, and desired capacity - Quiz 14medium DynamoDB - Why DynamoDB for NoSQL - Quiz 13medium Elastic Load Balancing - Target groups concept - Quiz 8hard RDS and Relational Databases - RDS pricing considerations - Quiz 15hard RDS and Relational Databases - RDS pricing considerations - Quiz 12easy RDS and Relational Databases - RDS security (encryption, security groups) - Quiz 11easy RDS and Relational Databases - Parameter groups and option groups - Quiz 11easy