Module Values.EncryptionAtRestOptionsSource

Specifies the Encryption At Rest Options.

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

    Specifies the option to enable Encryption At Rest.

    *)
  2. kmsKeyId : KmsKeyId.t option;
    (*

    Specifies the KMS Key ID for Encryption At Rest options.

    *)
}
Sourceval make : ?enabled:??? -> ?kmsKeyId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of KmsKeyId.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