Values.RtpRouterOutputConfigurationSourceThe 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.
type nonrec t = {destinationAddress : String_.t;The destination IP address for the RTP protocol in the router output configuration.
*)destinationPort : RtpRouterOutputConfigurationDestinationPortInteger.t;The destination port number for the RTP protocol in the router output configuration.
*)forwardErrorCorrection : ForwardErrorCorrectionState.t option;The state of forward error correction for the RTP protocol in the router output configuration.
*)}val make :
?forwardErrorCorrection:??? ->
destinationAddress:String_.t ->
destinationPort:RtpRouterOutputConfigurationDestinationPortInteger.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of RtpRouterOutputConfigurationDestinationPortInteger.t
| `String of String_.t ])
list ]