Kong · Schema

AWS VPC Peering Attachment Config

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
kind object
peer_account_id string
peer_vpc_id string
peer_vpc_region string
View JSON Schema on GitHub

JSON Schema

kong-awsvpcpeeringgatewayattachmentconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AwsVpcPeeringGatewayAttachmentConfig",
  "title": "AWS VPC Peering Attachment Config",
  "type": "object",
  "properties": {
    "kind": {
      "enum": [
        "aws-vpc-peering-attachment"
      ],
      "title": "AWS VPC Peering Attachment Config"
    },
    "peer_account_id": {
      "type": "string"
    },
    "peer_vpc_id": {
      "type": "string"
    },
    "peer_vpc_region": {
      "type": "string"
    }
  },
  "additionalProperties": false,
  "required": [
    "kind",
    "peer_account_id",
    "peer_vpc_id",
    "peer_vpc_region"
  ]
}