Kong · Schema

EventGatewayParsedRecordEncryptFieldsConfig

The configuration of the encrypt parsed record policy.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
failure_mode object
encrypt_fields array Selects which fields to encrypt and with what keys.
View JSON Schema on GitHub

JSON Schema

kong-eventgatewayparsedrecordencryptfieldsconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventGatewayParsedRecordEncryptFieldsConfig",
  "title": "EventGatewayParsedRecordEncryptFieldsConfig",
  "description": "The configuration of the encrypt parsed record policy.",
  "type": "object",
  "properties": {
    "failure_mode": {
      "$ref": "#/components/schemas/ProduceFailureMode"
    },
    "encrypt_fields": {
      "description": "Selects which fields to encrypt and with what keys.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/EventGatewayParsedRecordEncryptionSelector"
      },
      "minItems": 1
    }
  },
  "required": [
    "failure_mode",
    "encrypt_fields"
  ]
}