Amazon API Gateway · Schema

ThrottleSettings

GatewayHTTP APIREST APIServerlessWebSocket

Properties

Name Type Description
burstLimit integer The API request burst limit per second.
rateLimit number The API request steady-state rate limit per second.
View JSON Schema on GitHub

JSON Schema

amazon-api-gateway-throttlesettings-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ThrottleSettings",
  "type": "object",
  "properties": {
    "burstLimit": {
      "type": "integer",
      "description": "The API request burst limit per second."
    },
    "rateLimit": {
      "type": "number",
      "description": "The API request steady-state rate limit per second."
    }
  }
}