Amazon API Gateway · Schema

EndpointConfiguration

GatewayHTTP APIREST APIServerlessWebSocket

Properties

Name Type Description
types array A list of endpoint types of an API or its custom domain name.
vpcEndpointIds array A list of VPC endpoint IDs of an API against which to create Route53 ALIASes.
View JSON Schema on GitHub

JSON Schema

amazon-api-gateway-endpointconfiguration-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "EndpointConfiguration",
  "type": "object",
  "properties": {
    "types": {
      "type": "array",
      "description": "A list of endpoint types of an API or its custom domain name.",
      "items": {
        "type": "string",
        "enum": [
          "REGIONAL",
          "EDGE",
          "PRIVATE"
        ]
      }
    },
    "vpcEndpointIds": {
      "type": "array",
      "description": "A list of VPC endpoint IDs of an API against which to create Route53 ALIASes.",
      "items": {
        "type": "string"
      }
    }
  }
}