Amazon API Gateway · Schema

CreateUsagePlanRequest

GatewayHTTP APIREST APIServerlessWebSocket

Properties

Name Type Description
name string
description string
apiStages array
throttle object
quota object
tags object
View JSON Schema on GitHub

JSON Schema

amazon-api-gateway-createusageplanrequest-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateUsagePlanRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "apiStages": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/ApiStage"
      }
    },
    "throttle": {
      "$ref": "#/definitions/ThrottleSettings"
    },
    "quota": {
      "$ref": "#/definitions/QuotaSettings"
    },
    "tags": {
      "type": "object"
    }
  },
  "required": [
    "name"
  ]
}