Class RejectedError
- java.lang.Object
-
- software.amazon.awssdk.iot.iotjobs.model.RejectedError
-
public class RejectedError extends Object
Response document containing details about a failed request.
-
-
Field Summary
Fields Modifier and Type Field Description String
clientToken
Opaque token that can correlate this response to the original request.RejectedErrorCode
code
Indicates the type of error.JobExecutionState
executionState
A JobExecutionState object.String
message
A text message that provides additional information.Timestamp
timestamp
The date and time the response was generated by AWS IoT.
-
Constructor Summary
Constructors Constructor Description RejectedError()
-
-
-
Field Detail
-
clientToken
public String clientToken
Opaque token that can correlate this response to the original request.
-
code
public RejectedErrorCode code
Indicates the type of error.
-
message
public String message
A text message that provides additional information.
-
timestamp
public Timestamp timestamp
The date and time the response was generated by AWS IoT.
-
executionState
public JobExecutionState executionState
A JobExecutionState object. This field is included only when the code field has the value InvalidStateTransition or VersionMismatch.
-
-