Module Values_3.VerifiedAccessSseSpecificationRequestSource

Verified Access provides server side encryption by default to data at rest using Amazon Web Services-owned KMS keys. You also have the option of using customer managed KMS keys, which can be specified using the options below.

Sourcetype nonrec t = {
  1. customerManagedKeyEnabled : Values_0.Boolean.t option;
    (*

    Enable or disable the use of customer managed KMS keys for server side encryption. Valid values: True | False

    *)
  2. kmsKeyArn : Values_0.KmsKeyArn.t option;
    (*

    The ARN of the KMS key.

    *)
}
Sourceval make : ?customerManagedKeyEnabled:??? -> ?kmsKeyArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `String of Values_0.KmsKeyArn.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