Module Values.NodeInfoSource

The node information object.

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

    The start time.

    *)
  2. brokerNodeInfo : BrokerNodeInfo.t option;
    (*

    The broker node info.

    *)
  3. controllerNodeInfo : ControllerNodeInfo.t option;
    (*

    The ControllerNodeInfo.

    *)
  4. instanceType : string option;
    (*

    The instance type.

    *)
  5. nodeARN : string option;
    (*

    The Amazon Resource Name (ARN) of the node.

    *)
  6. nodeType : NodeType.t option;
    (*

    The node type.

    *)
  7. zookeeperNodeInfo : ZookeeperNodeInfo.t option;
    (*

    The ZookeeperNodeInfo.

    *)
}
Sourceval make : ?addedToClusterTime:??? -> ?brokerNodeInfo:??? -> ?controllerNodeInfo:??? -> ?instanceType:??? -> ?nodeARN:??? -> ?nodeType:??? -> ?zookeeperNodeInfo:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of string | `Structure of (string * [> `Double of float | `List of [> `String of string ] list | `String of string | `Structure of (string * [> `Long of Awso.Import.Int64.t | `String of string ]) 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