Class UpdateJobExecutionRequest
- java.lang.Object
-
- software.amazon.awssdk.iot.iotjobs.model.UpdateJobExecutionRequest
-
public class UpdateJobExecutionRequest extends Object
Data needed to make an UpdateJobExecution request.
-
-
Field Summary
Fields Modifier and Type Field Description String
clientToken
A client token used to correlate requests and responses.Long
executionNumber
Optional.Integer
expectedVersion
The expected current version of the job execution.Boolean
includeJobDocument
Optional.Boolean
includeJobExecutionState
Optional.String
jobId
The unique identifier assigned to this job when it was created.JobStatus
status
The new status for the job execution (IN_PROGRESS, FAILED, SUCCEEDED, or REJECTED).HashMap<String,String>
statusDetails
A collection of name-value pairs that describe the status of the job execution.Long
stepTimeoutInMinutes
Specifies the amount of time this device has to finish execution of this job.String
thingName
The name of the thing associated with the device.
-
Constructor Summary
Constructors Constructor Description UpdateJobExecutionRequest()
-
-
-
Field Detail
-
thingName
public String thingName
The name of the thing associated with the device.
-
jobId
public String jobId
The unique identifier assigned to this job when it was created.
-
status
public JobStatus status
The new status for the job execution (IN_PROGRESS, FAILED, SUCCEEDED, or REJECTED). This must be specified on every update.
-
clientToken
public String clientToken
A client token used to correlate requests and responses. Enter an arbitrary value here and it is reflected in the response.
-
statusDetails
public HashMap<String,String> statusDetails
A collection of name-value pairs that describe the status of the job execution. If not specified, the statusDetails are unchanged.
-
expectedVersion
public Integer expectedVersion
The expected current version of the job execution. Each time you update the job execution, its version is incremented. If the version of the job execution stored in the AWS IoT Jobs service does not match, the update is rejected with a VersionMismatch error, and an ErrorResponse that contains the current job execution status data is returned.
-
executionNumber
public Long executionNumber
Optional. A number that identifies a job execution on a device. If not specified, the latest job execution is used.
-
includeJobExecutionState
public Boolean includeJobExecutionState
Optional. When included and set to true, the response contains the JobExecutionState field. The default is false.
-
includeJobDocument
public Boolean includeJobDocument
Optional. When included and set to true, the response contains the JobDocument. The default is false.
-
stepTimeoutInMinutes
public Long stepTimeoutInMinutes
Specifies the amount of time this device has to finish execution of this job. If the job execution status is not set to a terminal state before this timer expires, or before the timer is reset (by again calling UpdateJobExecution, setting the status to IN_PROGRESS and specifying a new timeout value in this field) the job execution status is set to TIMED_OUT. Setting or resetting this timeout has no effect on the job execution timeout that might have been specified when the job was created (by using CreateJob with the timeoutConfig).
-
-