Kong · Schema

AWS Transit Gateway Attachment Config

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
kind object
transit_gateway_id string AWS Transit Gateway ID to create attachment to.
ram_share_arn string Resource Share ARN to verify request to create transit gateway attachment.
View JSON Schema on GitHub

JSON Schema

kong-awstransitgatewayattachmentconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AwsTransitGatewayAttachmentConfig",
  "title": "AWS Transit Gateway Attachment Config",
  "type": "object",
  "properties": {
    "kind": {
      "enum": [
        "aws-transit-gateway-attachment"
      ],
      "title": "AWS Transit Gateway Attachment Type"
    },
    "transit_gateway_id": {
      "description": "AWS Transit Gateway ID to create attachment to.",
      "type": "string",
      "title": "Transit Gateway ID"
    },
    "ram_share_arn": {
      "description": "Resource Share ARN to verify request to create transit gateway attachment.",
      "type": "string",
      "title": "RAM Share ARN"
    }
  },
  "additionalProperties": false,
  "required": [
    "kind",
    "transit_gateway_id",
    "ram_share_arn"
  ]
}