v1

latestOpenAPI 3.0.0Apache 2.0 License2026-07-1426146126.4 KB

Returns an array of <code>JobListEntry</code> objects of the specified length. Each <code>JobListEntry</code> object contains a job's state, a job's ID, and a value that indicates whether the job is a job part, in the case of export jobs. Calling this API action in one of the US regions will return jobs from the list of all jobs associated with this account in all US regions.

post/#X-Amz-Target=AWSIESnowballJobManagementService.ListJobs

Query parameters

MaxResultsstring

Pagination limit

NextTokenstring

Pagination token

Headers

X-Amz-Target'AWSIESnowballJobManagementService.ListJobs' required

Request body

MaxResultsinteger

The number of <code>JobListEntry</code> objects to return.

NextTokenstring

HTTP requests are stateless. To identify what object comes "next" in the list of <code>JobListEntry</code> objects, you have the option of specifying <code>NextToken</code> as the starting point for your returned list.

Response

Success

NextTokenstring

HTTP requests are stateless. If you use this automatically generated <code>NextToken</code> value in your next <code>ListJobs</code> call, your returned <code>JobListEntry</code> objects will start from this point in the array.

Example response

{
  "JobListEntries": [
    {
      "CreationDate": "1460678186.0",
      "Description": "MyJob",
      "IsMaster": false,
      "JobId": "JID123e4567-e89b-12d3-a456-426655440000",
      "JobState": "New",
      "JobType": "IMPORT",
      "SnowballType": "STANDARD"
    }
  ]
}