Kong · Schema

AWS Private Hosted Zone Attachment Config

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
kind object
hosted_zone_id string AWS Hosted Zone to create attachment to.
View JSON Schema on GitHub

JSON Schema

kong-awsprivatehostedzoneattachmentconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AwsPrivateHostedZoneAttachmentConfig",
  "title": "AWS Private Hosted Zone Attachment Config",
  "type": "object",
  "properties": {
    "kind": {
      "enum": [
        "aws-private-hosted-zone-attachment"
      ],
      "title": "AWS Private Hosted Zone Type"
    },
    "hosted_zone_id": {
      "description": "AWS Hosted Zone to create attachment to.",
      "type": "string",
      "title": "Hosted Zone Id"
    }
  },
  "additionalProperties": false,
  "required": [
    "kind",
    "hosted_zone_id"
  ]
}