Module Values.OutputChannelMappingSource

OutputChannel mapping settings.

Sourcetype nonrec t = {
  1. inputChannels : int list option;
    (*

    Use this setting to specify your remix values when they are integers, such as -10, 0, or 4.

    *)
  2. inputChannelsFineTune : float list option;
    (*

    Use this setting to specify your remix values when they have a decimal component, such as -10.312, 0.08, or 4.9. MediaConvert rounds your remixing values to the nearest thousandth.

    *)
}
Sourceval make : ?inputChannels:??? -> ?inputChannelsFineTune:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Double of float | `Integer of int ] 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