Class GetPendingJobExecutionsResponse
- java.lang.Object
-
- software.amazon.awssdk.iot.iotjobs.model.GetPendingJobExecutionsResponse
-
public class GetPendingJobExecutionsResponse extends Object
Response payload to a GetPendingJobExecutions request.
-
-
Field Summary
Fields Modifier and Type Field Description String
clientToken
A client token used to correlate requests and responses.List<JobExecutionSummary>
inProgressJobs
A list of JobExecutionSummary objects with status IN_PROGRESS.List<JobExecutionSummary>
queuedJobs
A list of JobExecutionSummary objects with status QUEUED.Timestamp
timestamp
The time when the message was sent.
-
Constructor Summary
Constructors Constructor Description GetPendingJobExecutionsResponse()
-
-
-
Field Detail
-
inProgressJobs
public List<JobExecutionSummary> inProgressJobs
A list of JobExecutionSummary objects with status IN_PROGRESS.
-
queuedJobs
public List<JobExecutionSummary> queuedJobs
A list of JobExecutionSummary objects with status QUEUED.
-
timestamp
public Timestamp timestamp
The time when the message was sent.
-
clientToken
public String clientToken
A client token used to correlate requests and responses.
-
-