AWS - API GatewayWhich 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}}Check Answer
Step-by-Step SolutionSolution:Step 1: Review API Gateway throttling JSON formatThe correct key for burst limit is "burstLimit" inside "throttle" object.Step 2: Match correct JSON snippet{"throttle": {"burstLimit": 200}} correctly uses {"throttle": {"burstLimit": 200}} syntax.Final Answer:{"throttle": {"burstLimit": 200}} -> Option BQuick Check:Correct burstLimit JSON = A [OK]Quick Trick: Use "burstLimit" inside "throttle" for burst setting [OK]Common Mistakes:MISTAKESUsing incorrect key names like "burst"Placing burstLimit outside throttle objectConfusing rateLimit with burstLimit
Master "API Gateway" in AWS9 interactive learning modes - each teaches the same concept differentlyLearnWhyDeepVisualTryChallengeProjectRecallTime
More AWS Quizzes AWS Lambda - Environment variables in Lambda - Quiz 4medium CloudWatch - Log groups and log streams - Quiz 8hard CloudWatch - CloudWatch alarms - Quiz 2easy CloudWatch - CloudWatch metrics - Quiz 9hard Elastic Load Balancing - Application Load Balancer (ALB) - Quiz 14medium Elastic Load Balancing - Cross-zone load balancing - Quiz 2easy RDS and Relational Databases - Parameter groups and option groups - Quiz 6medium RDS and Relational Databases - Read replicas for performance - Quiz 11easy RDS and Relational Databases - Launching an RDS instance - Quiz 9hard SNS and SQS - Standard vs FIFO queues - Quiz 13medium