StoreEncryptConf

data class StoreEncryptConf(val enable: Boolean? = null, val encryptType: String? = null, val userCmkInfo: StoreEncryptConfUserCmkInfo? = null)

Constructors

Link copied to clipboard
constructor(enable: Boolean? = null, encryptType: String? = null, userCmkInfo: StoreEncryptConfUserCmkInfo? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val enable: Boolean? = null

Enable encryption. Default false.

Link copied to clipboard
val encryptType: String? = null

Supported encryption type, only supports default(AES), m4.

Link copied to clipboard

User bring your own key (BYOK) encryption Refer to details, the format is as follows. See user_cmk_info below. { "cmk_key_id": "your_cmk_key_id", "arn": "your_role_arn", "region_id": "you_cmk_region_id" }. See user_cmk_info below.