Class JobExecutionData
- java.lang.Object
-
- software.amazon.awssdk.iot.iotjobs.model.JobExecutionData
-
public class JobExecutionData extends Object
Data about a job execution.
-
-
Field Summary
Fields Modifier and Type Field Description LongexecutionNumberA number that identifies a job execution on a device.HashMap<String,Object>jobDocumentThe content of the job document.StringjobIdThe unique identifier you assigned to this job when it was created.TimestamplastUpdatedAtThe time when the job execution started.TimestampqueuedAtThe time when the job execution was enqueued.TimestampstartedAtThe time when the job execution started.JobStatusstatusThe status of the job execution.HashMap<String,String>statusDetailsA collection of name-value pairs that describe the status of the job execution.StringthingNameThe name of the thing that is executing the job.IntegerversionNumberThe version of the job execution.
-
Constructor Summary
Constructors Constructor Description JobExecutionData()
-
-
-
Field Detail
-
jobId
public String jobId
The unique identifier you assigned to this job when it was created.
-
thingName
public String thingName
The name of the thing that is executing the job.
-
status
public JobStatus status
The status of the job execution. Can be one of: QUEUED, IN_PROGRESS, FAILED, SUCCEEDED, CANCELED, TIMED_OUT, REJECTED, or REMOVED.
-
statusDetails
public HashMap<String,String> statusDetails
A collection of name-value pairs that describe the status of the job execution.
-
queuedAt
public Timestamp queuedAt
The time when the job execution was enqueued.
-
startedAt
public Timestamp startedAt
The time when the job execution started.
-
lastUpdatedAt
public Timestamp lastUpdatedAt
The time when the job execution started.
-
versionNumber
public Integer versionNumber
The version of the job execution. Job execution versions are incremented each time they are updated by a device.
-
executionNumber
public Long executionNumber
A number that identifies a job execution on a device. It can be used later in commands that return or update job execution information.
-
-