Kong · Schema

EncryptionFailureMode

Describes how to handle failing encryption or decryption. Use `error` if the record should be rejected if encryption or decryption fails. Use `passthrough` to ignore encryption or decryption failure and continue proxying the record.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source
View JSON Schema on GitHub

JSON Schema

kong-encryptionfailuremode-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EncryptionFailureMode",
  "title": "EncryptionFailureMode",
  "description": "Describes how to handle failing encryption or decryption.\nUse `error` if the record should be rejected if encryption or decryption fails.\nUse `passthrough` to ignore encryption or decryption failure and continue proxying the record.\n",
  "type": "string",
  "enum": [
    "error",
    "passthrough"
  ],
  "x-speakeasy-unknown-values": "allow"
}