SSEKeyType

Updated at:

The type of the server-side encryption (SSE) key.

Enumerated values

  • SSE_KMS_SERVICE: A key managed by Key Management Service (KMS).

  • SSE_BYOK: A key provided through Bring Your Own Key (BYOK).

enum SSEKeyType {
    SSE_KMS_SERVICE = 1;
    SSE_BYOK = 2;
}