Module Values.DiskEncryptionConfigurationSource

The configuration object that allows encrypting local disks.

Sourcetype nonrec t = {
  1. encryptionContext : EncryptionContext.t option;
    (*

    Specifies the optional encryption context that will be used when encrypting the data. An encryption context is a collection of non-secret key-value pairs that represent additional authenticated data.

    *)
  2. encryptionKeyArn : EncryptionKeyArn.t option;
    (*

    The KMS key ARN to encrypt local disks.

    *)
}
Sourceval make : ?encryptionContext:??? -> ?encryptionKeyArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of EncryptionContextKey.t ] * [> `String of EncryptionContextValue.t ]) list | `String of EncryptionKeyArn.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