Kong · Schema

EventGatewayDecryptPolicyConfig

The configuration of the decrypt policy.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
failure_mode object
key_sources array Describes how to find a symmetric key for decryption.
part_of_record array Describes the parts of a record to decrypt.
View JSON Schema on GitHub

JSON Schema

kong-eventgatewaydecryptpolicyconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventGatewayDecryptPolicyConfig",
  "title": "EventGatewayDecryptPolicyConfig",
  "description": "The configuration of the decrypt policy.",
  "type": "object",
  "properties": {
    "failure_mode": {
      "$ref": "#/components/schemas/EncryptionFailureMode"
    },
    "key_sources": {
      "description": "Describes how to find a symmetric key for decryption.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/EventGatewayKeySource"
      },
      "minItems": 1
    },
    "part_of_record": {
      "description": "Describes the parts of a record to decrypt.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DecryptionRecordPart"
      },
      "minItems": 1
    }
  },
  "required": [
    "failure_mode",
    "key_sources",
    "part_of_record"
  ]
}