Module Values.AwsMskClusterClusterInfoEncryptionInfoDetailsSource

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

Sourcetype nonrec t = {
  1. encryptionInTransit : AwsMskClusterClusterInfoEncryptionInfoEncryptionInTransitDetails.t option;
    (*

    The settings for encrypting data in transit.

    *)
  2. encryptionAtRest : AwsMskClusterClusterInfoEncryptionInfoEncryptionAtRestDetails.t option;
    (*

    The data-volume encryption details. You can't update encryption at rest settings for existing clusters.

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