Module Values.EncryptionSource

Contains information about the encryption used to store the job results in Amazon S3.

Sourcetype nonrec t = {
  1. encryptionType : EncryptionType.t option;
    (*

    The server-side encryption algorithm used when storing job results in Amazon S3, for example AES256 or aws:kms.

    *)
  2. kMSKeyId : String_.t option;
    (*

    The AWS KMS key ID to use for object encryption. All GET and PUT requests for an object protected by AWS KMS fail if not made by using Secure Sockets Layer (SSL) or Signature Version 4.

    *)
  3. kMSContext : String_.t option;
    (*

    Optional. If the encryption type is aws:kms, you can use this value to specify the encryption context for the job results.

    *)
}
Sourceval make : ?encryptionType:??? -> ?kMSKeyId:??? -> ?kMSContext:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t