Module Values.AwsMskClusterClusterInfoEncryptionInfoEncryptionInTransitDetailsSource

The settings for encrypting data in transit.

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

    When set to true, it indicates that data communication among the broker nodes of the cluster is encrypted. When set to false, the communication happens in plain text. The default value is true.

    *)
  2. clientBroker : NonEmptyString.t option;
    (*

    Indicates the encryption setting for data in transit between clients and brokers.

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