Module Values.BrokerInstanceSource

Returns information about all brokers.

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

    The brokers web console URL.

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

    The broker's wire-level protocol endpoints.

    *)
  3. ipAddress : string option;
    (*

    The IP address of the Elastic Network Interface (ENI) attached to the broker. Does not apply to RabbitMQ brokers.

    *)
}
Sourceval make : ?consoleURL:??? -> ?endpoints:??? -> ?ipAddress:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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