Module Values.BrokerNodeInfoSource

BrokerNodeInfo

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

    The attached elastic network interface of the broker.

    *)
  2. brokerId : float option;
    (*

    The ID of the broker.

    *)
  3. clientSubnet : string option;
    (*

    The client subnet to which this broker node belongs.

    *)
  4. clientVpcIpAddress : string option;
    (*

    The virtual private cloud (VPC) of the client.

    *)
  5. currentBrokerSoftwareInfo : BrokerSoftwareInfo.t option;
    (*

    Information about the version of software currently deployed on the Apache Kafka brokers in the cluster.

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

    Endpoints for accessing the broker.

    *)
}
Sourceval make : ?attachedENIId:??? -> ?brokerId:??? -> ?clientSubnet:??? -> ?clientVpcIpAddress:??? -> ?currentBrokerSoftwareInfo:??? -> ?endpoints:??? -> unit -> t
Sourceval to_value : t -> [> `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 ]
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