Module Values.AwsMskClusterClusterInfoDetailsSource

Provide details about an Amazon Managed Streaming for Apache Kafka (Amazon MSK) cluster.

Sourcetype nonrec t = {
  1. encryptionInfo : AwsMskClusterClusterInfoEncryptionInfoDetails.t option;
    (*

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

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

    The current version of the cluster.

    *)
  3. numberOfBrokerNodes : Integer.t option;
    (*

    The number of broker nodes in the cluster.

    *)
  4. clusterName : NonEmptyString.t option;
    (*

    The name of the cluster.

    *)
  5. clientAuthentication : AwsMskClusterClusterInfoClientAuthenticationDetails.t option;
    (*

    Provides information for different modes of client authentication.

    *)
  6. enhancedMonitoring : NonEmptyString.t option;
    (*

    Specifies the level of monitoring for the cluster.

    *)
}
Sourceval make : ?encryptionInfo:??? -> ?currentVersion:??? -> ?numberOfBrokerNodes:??? -> ?clusterName:??? -> ?clientAuthentication:??? -> ?enhancedMonitoring:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of NonEmptyString.t | `Structure of (string * [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of NonEmptyString.t ] list | `String of NonEmptyString.t | `Structure of (string * [> `Boolean of Boolean.t ]) list ]) list ]) 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