Kong · Schema

PatchAwsResourceEndpointGateway

Request schema for updating AWS Resource Endpoint.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
transit_gateway_attachment_config object
View JSON Schema on GitHub

JSON Schema

kong-patchawsresourceendpointgateway-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchAwsResourceEndpointGateway",
  "title": "PatchAwsResourceEndpointGateway",
  "description": "Request schema for updating AWS Resource Endpoint.",
  "properties": {
    "transit_gateway_attachment_config": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "kind": {
          "enum": [
            "aws-resource-endpoint-attachment"
          ],
          "title": "AWS Resource Endpoint Attachment Type"
        },
        "resource_config": {
          "$ref": "#/components/schemas/AwsResourceEndpointConfig"
        }
      },
      "required": [
        "kind",
        "resource_config"
      ]
    }
  },
  "required": [
    "transit_gateway_attachment_config"
  ],
  "x-speakeasy-name-override": "AWSResourceEndpointGateway"
}