Module Values.DefaultServerSideEncryptionSource

Contains information on the server side encryption method used in the S3 bucket. See S3 Server-Side Encryption for more information.

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

    The type of encryption used for objects within the S3 bucket.

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

    The Amazon Resource Name (ARN) of the KMS encryption key. Only available if the bucket EncryptionType is aws:kms.

    *)
}
Sourceval make : ?encryptionType:??? -> ?kmsMasterKeyArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure 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