Module Values.BridgeNetworkOutputSource

The output of the bridge. A network output is delivered to your premises.

Sourcetype nonrec t = {
  1. ipAddress : String_.t option;
    (*

    The network output IP address.

    *)
  2. name : String_.t option;
    (*

    The network output name.

    *)
  3. networkName : String_.t option;
    (*

    The network output's gateway network name.

    *)
  4. port : Integer.t option;
    (*

    The network output's port.

    *)
  5. protocol : Protocol.t option;
    (*

    The network output protocol. Elemental MediaConnect no longer supports the Fujitsu QoS protocol. This reference is maintained for legacy purposes only.

    *)
  6. ttl : Integer.t option;
    (*

    The network output TTL.

    *)
}
Sourceval make : ?ipAddress:??? -> ?name:??? -> ?networkName:??? -> ?port:??? -> ?protocol:??? -> ?ttl:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of String_.t ]) 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