Module Values.RtpRouterOutputConfigurationSource

The configuration settings for a router output using the RTP (Real-Time Transport Protocol) protocol, including the destination address and port, and forward error correction state.

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

    The destination IP address for the RTP protocol in the router output configuration.

    *)
  2. destinationPort : RtpRouterOutputConfigurationDestinationPortInteger.t;
    (*

    The destination port number for the RTP protocol in the router output configuration.

    *)
  3. forwardErrorCorrection : ForwardErrorCorrectionState.t option;
    (*

    The state of forward error correction for the RTP protocol in the router output configuration.

    *)
}
Sourceval context_ : string
Sourceval make : ?forwardErrorCorrection:??? -> destinationAddress:String_.t -> destinationPort:RtpRouterOutputConfigurationDestinationPortInteger.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of RtpRouterOutputConfigurationDestinationPortInteger.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