Module Values.EncryptionInfoSource

Includes encryption-related information, such as the AWS KMS key used for encrypting data at rest and whether you want MSK to encrypt your data in transit.

Sourcetype nonrec t = {
  1. encryptionAtRest : EncryptionAtRest.t option;
    (*

    The data-volume encryption details.

    *)
  2. encryptionInTransit : EncryptionInTransit.t option;
    (*

    The details for encryption in transit.

    *)
}
Sourceval make : ?encryptionAtRest:??? -> ?encryptionInTransit:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of bool | `Enum of string | `String of string ]) list ]) 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