Kong · Schema

AWS Resource Endpoint Config

List of unique resource config mapping for aws resource endpoint.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source
View JSON Schema on GitHub

JSON Schema

kong-awsresourceendpointconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AwsResourceEndpointConfig",
  "title": "AWS Resource Endpoint Config",
  "description": "List of unique resource config mapping for aws resource endpoint.\n",
  "type": "array",
  "items": {
    "type": "object",
    "additionalProperties": false,
    "properties": {
      "resource_config_id": {
        "description": "Resource Config ID to uniquely identify a resource configuration.",
        "type": "string",
        "title": "Resource Config ID"
      },
      "domain_name": {
        "description": "Domain Name to uniquely identify a resource configuration.",
        "type": "string",
        "title": "Domain Name"
      }
    },
    "required": [
      "resource_config_id",
      "domain_name"
    ]
  }
}