Values.EncryptionSourceContains the type of server-side encryption used.
type nonrec t = {encryptionType : ServerSideEncryption.t;The server-side encryption algorithm used when storing job results in Amazon S3 (for example, AES256, aws:kms).
*)kMSKeyId : SSEKMSKeyId.t option;If the encryption type is aws:kms, this optional value specifies the ID of the symmetric encryption customer managed key to use for encryption of job results. Amazon S3 only supports symmetric encryption KMS keys. For more information, see Asymmetric keys in KMS in the Amazon Web Services Key Management Service Developer Guide.
*)kMSContext : KMSContext.t option;If the encryption type is aws:kms, this optional value can be used to specify the encryption context for the restore results.
*)}val make :
?kMSKeyId:??? ->
?kMSContext:??? ->
encryptionType:ServerSideEncryption.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of SSEKMSKeyId.t ]) list ]