The key to use for encryption.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EncryptionKey", "title": "EncryptionKey", "description": "The key to use for encryption.\n", "discriminator": { "propertyName": "type", "mapping": { "aws": "#/components/schemas/EncryptionKeyAWS", "static": "#/components/schemas/EncryptionKeyStatic" } }, "oneOf": [ { "$ref": "#/components/schemas/EncryptionKeyAWS" }, { "$ref": "#/components/schemas/EncryptionKeyStatic" } ] }