AWS Import/Export
Developer Guide (API Version 2010-06-03)
Print this pageEmail this pageGo to the ForumsView the PDFShare this page on TwitterShare this page on FacebookBookmark this page on DeliciousSubmit this page to RedditSubmit this page to DiggDid this page help you?  Yes  No   Tell us about it...

Listing Your Jobs

You use ListJobs to list jobs. You can only list the jobs that you own. You might list jobs so that you can then get their status.

To list your jobs using the command line client

Use the ListJobs command.

> java -jar lib\AWSImportExportWebServiceTool-1.0.jar ListJobs 

To list your jobs using REST

To list the jobs you own submit a ListJobs request.

The following example returns all of the jobs you own.

POST / HTTP/1.1
content-type:application/x-www-form-urlencoded;charset=utf-8
host: https://importexport.amazonaws.com
content-length:155

Action=ListJobs&AWSAccessKeyId=AKIAIOSFODNN7EXAMPLE&SignatureVersion=2 
&SignatureMethod=HmacSHA256&Version=2010-06-01&Signature=%2FVfkltRBOoSUi1sWxRzN8rw%3D

You have the option of limiting the responses you get by the maximum number of jobs you want listed using the MaxJobs parameter. The following example shows how to list up to 25 import jobs. These jobs are listed from newest to oldest.

POST / HTTP/1.1
content-type:application/x-www-form-urlencoded;charset=utf-8
host: https://importexport.amazonaws.com
content-length:163

Action=ListJobs&MaxJobs=25&AWSAccessKeyId=AKIAIOSFODNN7EXAMPLE&SignatureVersion=2 
&SignatureMethod=HmacSHA256&Version=2010-06-01&Signature=%2FVfkltRBOoSUi1sWxRzN8rw%3D