Class JobExecutionSummary
- java.lang.Object
-
- software.amazon.awssdk.iot.iotjobs.model.JobExecutionSummary
-
public class JobExecutionSummary extends Object
Contains a subset of information about a job execution.
-
-
Field Summary
Fields Modifier and Type Field Description Long
executionNumber
A number that identifies a job execution on a device.String
jobId
The unique identifier you assigned to this job when it was created.Timestamp
lastUpdatedAt
The time when the job execution was last updated.Timestamp
queuedAt
The time when the job execution was enqueued.Timestamp
startedAt
The time when the job execution started.Integer
versionNumber
The version of the job execution.
-
Constructor Summary
Constructors Constructor Description JobExecutionSummary()
-
-
-
Field Detail
-
jobId
public String jobId
The unique identifier you assigned to this job when it was created.
-
executionNumber
public Long executionNumber
A number that identifies a job execution on a device.
-
versionNumber
public Integer versionNumber
The version of the job execution. Job execution versions are incremented each time the AWS IoT Jobs service receives an update from a device.
-
lastUpdatedAt
public Timestamp lastUpdatedAt
The time when the job execution was last updated.
-
queuedAt
public Timestamp queuedAt
The time when the job execution was enqueued.
-
startedAt
public Timestamp startedAt
The time when the job execution started.
-
-