Module Values.WarningGroupSource

Contains any warning codes and their count for the job.

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

    Warning code that identifies a specific warning in the job. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/warning_codes.html

    *)
  2. count : int option;
    (*

    The number of times this warning occurred in the job.

    *)
}
Sourceval make : ?code:??? -> ?count:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of int ]) 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