Kong · Schema

AWS Resource Endpoint Attachment Config Response

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
kind object
ram_share_arn string Resource Share ARN to verify request to create transit gateway attachment.
resource_config object
View JSON Schema on GitHub

JSON Schema

kong-awsresourceendpointattachmentconfigresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AwsResourceEndpointAttachmentConfigResponse",
  "title": "AWS Resource Endpoint Attachment Config Response",
  "type": "object",
  "properties": {
    "kind": {
      "enum": [
        "aws-resource-endpoint-attachment"
      ],
      "title": "AWS Resource Endpoint Attachment Type"
    },
    "ram_share_arn": {
      "description": "Resource Share ARN to verify request to create transit gateway attachment.",
      "type": "string",
      "title": "RAM Share ARN"
    },
    "resource_config": {
      "$ref": "#/components/schemas/AwsResourceEndpointConfigResponse"
    }
  },
  "additionalProperties": false,
  "required": [
    "kind",
    "ram_share_arn",
    "resource_config"
  ]
}