Module Values.InputDestinationRequestSource

Endpoint settings for a PUSH type input.

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

    A unique name for the location the RTMP stream is being pushed to.

    *)
  2. network : string option;
    (*

    If the push input has an input location of ON-PREM, ID the ID of the attached network.

    *)
  3. networkRoutes : InputRequestDestinationRoute.t list option;
    (*

    If the push input has an input location of ON-PREM it's a requirement to specify what the route of the input is going to be on the customer local network.

    *)
  4. staticIpAddress : string option;
    (*

    If the push input has an input location of ON-PREM it's optional to specify what the ip address of the input is going to be on the customer local network.

    *)
}
Sourceval make : ?streamName:??? -> ?network:??? -> ?networkRoutes:??? -> ?staticIpAddress:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of string ]) list ] list | `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