Amazon API Gateway · Schema

CreateIntegrationRequest

CreateIntegrationRequest schema from Amazon API Gateway v2 API

API GatewayCloudRESTHTTPWebSocketServerlessMCPAgentCoreDeveloper Portal

Properties

Name Type Description
IntegrationType string Type of integration.
IntegrationUri string Integration target URI.
PayloadFormatVersion string Payload format version.
View JSON Schema on GitHub

JSON Schema

v2-create-integration-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "IntegrationType": {
      "type": "string",
      "enum": [
        "AWS",
        "AWS_PROXY",
        "HTTP",
        "HTTP_PROXY",
        "MOCK"
      ],
      "description": "Type of integration.",
      "example": "AWS"
    },
    "IntegrationUri": {
      "type": "string",
      "description": "Integration target URI.",
      "example": "https://example.com/resource/123"
    },
    "PayloadFormatVersion": {
      "type": "string",
      "description": "Payload format version.",
      "example": "1.0"
    }
  },
  "required": [
    "IntegrationType"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-api-gateway/refs/heads/main/json-schema/v2-create-integration-request-schema.json",
  "title": "CreateIntegrationRequest",
  "description": "CreateIntegrationRequest schema from Amazon API Gateway v2 API"
}