Amazon API Gateway · Schema

IntegrationResponse

GatewayHTTP APIREST APIServerlessWebSocket

Properties

Name Type Description
statusCode string
selectionPattern string
responseParameters object
responseTemplates object
contentHandling string
View JSON Schema on GitHub

JSON Schema

amazon-api-gateway-integrationresponse-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "IntegrationResponse",
  "type": "object",
  "properties": {
    "statusCode": {
      "type": "string"
    },
    "selectionPattern": {
      "type": "string"
    },
    "responseParameters": {
      "type": "object"
    },
    "responseTemplates": {
      "type": "object"
    },
    "contentHandling": {
      "type": "string",
      "enum": [
        "CONVERT_TO_BINARY",
        "CONVERT_TO_TEXT"
      ]
    }
  }
}