Module Values.StreamProcessingStopSelectorSource

Specifies when to stop processing the stream. You can specify a maximum amount of time to process the video.

Sourcetype nonrec t = {
  1. maxDurationInSeconds : MaxDurationInSecondsULong.t option;
    (*

    Specifies the maximum amount of time in seconds that you want the stream to be processed. The largest amount of time is 2 minutes. The default is 10 seconds.

    *)
}
Sourceval make : ?maxDurationInSeconds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of MaxDurationInSecondsULong.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