Kong · Schema

EventGatewayAWSKeySource

A key source that uses an AWS KMS to find a symmetric key. Load KMS credentials from the environment. See [aws docs](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/credproviders.html#credproviders-default-credentials-provider-chain) for more information about how credential retrieval.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
type string
View JSON Schema on GitHub

JSON Schema

kong-eventgatewayawskeysource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventGatewayAWSKeySource",
  "title": "EventGatewayAWSKeySource",
  "description": "A key source that uses an AWS KMS to find a symmetric key. Load KMS credentials from the environment.\n\nSee [aws docs](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/credproviders.html#credproviders-default-credentials-provider-chain)\nfor more information about how credential retrieval.\n",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "const": "aws"
    }
  },
  "additionalProperties": false,
  "required": [
    "type"
  ]
}