Module Values.OutputDestinationSource

Placeholder documentation for OutputDestination

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

    User-specified id. This is used in an output group or an output.

    *)
  2. mediaPackageSettings : MediaPackageOutputDestinationSettings.t list option;
    (*

    Destination settings for a MediaPackage output; one destination for both encoders.

    *)
  3. multiplexSettings : MultiplexProgramChannelDestinationSettings.t option;
    (*

    Destination settings for a Multiplex output; one destination for both encoders.

    *)
  4. settings : OutputDestinationSettings.t list option;
    (*

    Destination settings for a standard output; one destination for each redundant encoder.

    *)
  5. srtSettings : SrtOutputDestinationSettings.t list option;
    (*

    SRT settings for an SRT output; one destination for each redundant encoder.

    *)
  6. logicalInterfaceNames : string list option;
    (*

    Optional assignment of an output to a logical interface on the Node. Only applies to on premises channels.

    *)
  7. mediaConnectRouterSettings : MediaConnectRouterOutputDestinationSettings.t list option;
    (*

    Destination settings for a MediaConnect Router output; one destination for each redundant encoder.

    *)
}
Sourceval make : ?id:??? -> ?mediaPackageSettings:??? -> ?multiplexSettings:??? -> ?settings:??? -> ?srtSettings:??? -> ?logicalInterfaceNames:??? -> ?mediaConnectRouterSettings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of string | `Structure of (string * [> `Enum of string | `Integer of int | `String of string ]) list ] list | `String of string | `Structure of (string * [> `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