Amazon API Gateway · Schema

EndpointConfiguration

EndpointConfiguration schema from Amazon API Gateway v1 API

API GatewayCloudRESTHTTPWebSocketServerlessMCPAgentCoreDeveloper Portal

Properties

Name Type Description
types array List of endpoint types (EDGE, REGIONAL, PRIVATE).
View JSON Schema on GitHub

JSON Schema

v1-endpoint-configuration-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "types": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "EDGE",
          "REGIONAL",
          "PRIVATE"
        ]
      },
      "description": "List of endpoint types (EDGE, REGIONAL, PRIVATE).",
      "example": [
        "EDGE"
      ]
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-api-gateway/refs/heads/main/json-schema/v1-endpoint-configuration-schema.json",
  "title": "EndpointConfiguration",
  "description": "EndpointConfiguration schema from Amazon API Gateway v1 API"
}