Properties
| Name | Type | Description |
|---|---|---|
| algorithm | object | |
| fieldNameSuffix | string | |
| key | string | |
| mode | string | |
| padding | string | |
| targetField | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EncryptionMapperAESConfiguration",
"title": "Encryption - AES",
"type": "object",
"properties": {
"algorithm": {
"$ref": "#/components/schemas/EncryptionMapperAlgorithm"
},
"fieldNameSuffix": {
"type": "string"
},
"key": {
"type": "string",
"x-speakeasy-param-sensitive": true
},
"mode": {
"type": "string",
"enum": [
"CBC",
"CFB",
"OFB",
"CTR",
"GCM",
"ECB"
]
},
"padding": {
"type": "string",
"enum": [
"NoPadding",
"PKCS5Padding"
]
},
"targetField": {
"type": "string"
}
},
"required": [
"algorithm",
"key",
"mode",
"padding",
"targetField",
"fieldNameSuffix"
],
"x-speakeasy-component": true
}