Module Values.InputSwitchConfigurationSource

The configuration for input switching based on the media quality confidence score (MQCS) as provided from AWS Elemental MediaLive.

Sourcetype nonrec t = {
  1. mQCSInputSwitching : Boolean.t option;
    (*

    When true, AWS Elemental MediaPackage performs input switching based on the MQCS. Default is false. This setting is valid only when InputType is CMAF.

    *)
  2. preferredInput : InputSwitchConfigurationPreferredInputInteger.t option;
    (*

    For CMAF inputs, indicates which input MediaPackage should prefer when both inputs have equal MQCS scores. Select 1 to prefer the first ingest endpoint, or 2 to prefer the second ingest endpoint. If you don't specify a preferred input, MediaPackage uses its default switching behavior when MQCS scores are equal.

    *)
}
Sourceval make : ?mQCSInputSwitching:??? -> ?preferredInput:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of InputSwitchConfigurationPreferredInputInteger.t ]) 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