Module Values.ZookeeperNodeInfoSource

Zookeeper node information.

Sourcetype nonrec t = {
  1. attachedENIId : string option;
    (*

    The attached elastic network interface of the broker.

    *)
  2. clientVpcIpAddress : string option;
    (*

    The virtual private cloud (VPC) IP address of the client.

    *)
  3. endpoints : string list option;
    (*

    Endpoints for accessing the ZooKeeper.

    *)
  4. zookeeperId : float option;
    (*

    The role-specific ID for Zookeeper.

    *)
  5. zookeeperVersion : string option;
    (*

    The version of Zookeeper.

    *)
}
Sourceval make : ?attachedENIId:??? -> ?clientVpcIpAddress:??? -> ?endpoints:??? -> ?zookeeperId:??? -> ?zookeeperVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of float | `List of [> `String of string ] list | `String of string ]) 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