Module Values.MulticastSourceCreateRequestSource

Pair of multicast url and source ip address (optional) that make up a multicast source.

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

    This represents the ip address of the device sending the multicast stream.

    *)
  2. url : string;
    (*

    This represents the customer's source URL where multicast stream is pulled from.

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