Module Values.DataflowEndpointSource

Information about a dataflow endpoint.

Sourcetype nonrec t = {
  1. name : SafeName.t option;
    (*

    Name of a dataflow endpoint.

    *)
  2. address : SocketAddress.t option;
    (*

    Socket address of a dataflow endpoint.

    *)
  3. status : EndpointStatus.t option;
    (*

    Status of a dataflow endpoint.

    *)
  4. mtu : DataflowEndpointMtuInteger.t option;
    (*

    Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

    *)
}
Sourceval make : ?name:??? -> ?address:??? -> ?status:??? -> ?mtu:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of DataflowEndpointMtuInteger.t | `String of SafeName.t | `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) 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