EncryptionServiceResponse

data class EncryptionServiceResponse(val enabled: Boolean? = null, val keyType: String? = null, val lastEnabledTime: String)

A service that allows server-side encryption to be used.

Constructors

Link copied to clipboard
constructor(enabled: Boolean? = null, keyType: String? = null, lastEnabledTime: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val enabled: Boolean? = null

A boolean indicating whether or not the service encrypts the data as it is stored. Encryption at rest is enabled by default today and cannot be disabled.

Link copied to clipboard
val keyType: String? = null

Encryption key type to be used for the encryption service. 'Account' key type implies that an account-scoped encryption key will be used. 'Service' key type implies that a default service key is used.

Link copied to clipboard

Gets a rough estimate of the date/time when the encryption was last enabled by the user. Data is encrypted at rest by default today and cannot be disabled.