Module Values.NetworkInputSettingsSource

Network source to transcode. Must be accessible to the Elemental Live node that is running the live event through a network connection.

Sourcetype nonrec t = {
  1. hlsInputSettings : HlsInputSettings.t option;
    (*

    Specifies HLS input settings when the uri is for a HLS manifest.

    *)
  2. serverValidation : NetworkInputServerValidation.t option;
    (*

    Check HTTPS server certificates. When set to checkCryptographyOnly, cryptography in the certificate will be checked, but not the server's name. Certain subdomains (notably S3 buckets that use dots in the bucket name) do not strictly match the corresponding certificate's wildcard pattern and would otherwise cause the event to error. This setting is ignored for protocols that do not use https.

    *)
  3. multicastInputSettings : MulticastInputSettings.t option;
    (*

    Specifies multicast input settings when the uri is for a multicast event.

    *)
}
Sourceval make : ?hlsInputSettings:??? -> ?serverValidation:??? -> ?multicastInputSettings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `Integer of int | `String of string ]) list ]) 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