Amazon API Gateway · Schema

CreateRequestValidatorRequest

GatewayHTTP APIREST APIServerlessWebSocket

Properties

Name Type Description
name string
validateRequestBody boolean
validateRequestParameters boolean
View JSON Schema on GitHub

JSON Schema

amazon-api-gateway-createrequestvalidatorrequest-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateRequestValidatorRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "validateRequestBody": {
      "type": "boolean"
    },
    "validateRequestParameters": {
      "type": "boolean"
    }
  },
  "required": [
    "name"
  ]
}