Module Values.IoTJobTimeoutConfigSource

Contains information about the timeout configuration for a job.

Sourcetype nonrec t = {
  1. inProgressTimeoutInMinutes : IoTJobInProgressTimeoutInMinutes.t option;
    (*

    The amount of time, in minutes, that devices have to complete the job. The timer starts when the job status is set to IN_PROGRESS. If the job status doesn't change to a terminal state before the time expires, then the job status is set to TIMED_OUT. The timeout interval must be between 1 minute and 7 days (10080 minutes).

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