Module Values.AwsS3BucketServerSideEncryptionByDefaultSource

Specifies the default server-side encryption to apply to new objects in the bucket.

Sourcetype nonrec t = {
  1. sSEAlgorithm : NonEmptyString.t option;
    (*

    Server-side encryption algorithm to use for the default encryption. Valid values are aws: kms or AES256.

    *)
  2. kMSMasterKeyID : NonEmptyString.t option;
    (*

    KMS key ID to use for the default encryption.

    *)
}
Sourceval make : ?sSEAlgorithm:??? -> ?kMSMasterKeyID:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.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