Values_0.JobSummarySourceThe job summary.
type nonrec t = {jobArn : JobArn.t option;The job ARN.
*)jobId : JobId.t option;The unique identifier you assigned to this job when it was created.
*)thingGroupId : ThingGroupId.t option;The ID of the thing group.
*)targetSelection : TargetSelection.t option;Specifies whether the job will continue to run (CONTINUOUS), or will be complete after all those things specified as targets have completed the job (SNAPSHOT). If continuous, the job may also be run on a thing when a change is detected in a target. For example, a job will run on a thing when the thing is added to a target group, even after the job was completed by all things originally in the group. We recommend that you use continuous jobs instead of snapshot jobs for dynamic thing group targets. By using continuous jobs, devices that join the group receive the job execution even after the job has been created.
*)status : JobStatus.t option;The job summary status.
*)createdAt : DateType.t option;The time, in seconds since the epoch, when the job was created.
*)lastUpdatedAt : DateType.t option;The time, in seconds since the epoch, when the job was last updated.
*)completedAt : DateType.t option;The time, in seconds since the epoch, when the job completed.
*)isConcurrent : BooleanWrapperObject.t option;Indicates whether a job is concurrent. Will be true when a job is rolling out new job executions or canceling previously created executions, otherwise false.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of BooleanWrapperObject.t
| `Enum of string
| `String of JobArn.t
| `Timestamp of DateType.t ])
list ]