Indicates details about server-side encryption (SSE).
Data structure
message SSEDetails {
required bool enable = 1;
optional SSEKeyType key_type = 2;
optional bytes key_id = 3;
optional bytes role_arn = 4; // only useful when key_type is SSE_BYOK
}
Parameter | Type | Required | Description |
enable | bool | Yes | Indicates whether SSE is enabled. |
key_type | No | Indicates the type of the SSE key. | |
key_id | bytes | No | The ID of the encryption key. |
role_arn | bytes | No | The role that is used to access KMS. The server needs to assume the role to access KMS. |