Amazon API Gateway · Schema

QuotaSettings

GatewayHTTP APIREST APIServerlessWebSocket

Properties

Name Type Description
limit integer The maximum number of requests per time period.
offset integer The day that a time period starts.
period string The time period for which the maximum limit applies.
View JSON Schema on GitHub

JSON Schema

amazon-api-gateway-quotasettings-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "QuotaSettings",
  "type": "object",
  "properties": {
    "limit": {
      "type": "integer",
      "description": "The maximum number of requests per time period."
    },
    "offset": {
      "type": "integer",
      "description": "The day that a time period starts."
    },
    "period": {
      "type": "string",
      "description": "The time period for which the maximum limit applies.",
      "enum": [
        "DAY",
        "WEEK",
        "MONTH"
      ]
    }
  }
}