AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.
Container for the parameters to the ListJobs operation.
This operation lists jobs for a vault, including jobs that are in-progress and jobs
that have recently finished. The List Job operation returns a list of these jobs sorted
by job initiation time.
Amazon Glacier retains recently completed jobs for a period before deleting them;
however, it eventually removes completed jobs. The output of completed jobs can be
retrieved. Retaining completed jobs for a period of time after they have completed
enables you to get a job output in the event you miss the job completion notification
or your first attempt to download it fails. For example, suppose you start an archive
retrieval job to download an archive. After the job completes, you start to download
the archive but encounter a network error. In this scenario, you can retry and download
the archive while the job exists.
The List Jobs operation supports pagination. You should always check the response
Marker
field. If there are no more jobs to list, the Marker
field is
set to null
. If there are more jobs to list, the Marker
field is set
to a non-null value, which you can use to continue the pagination of the list. To
return a list of jobs that begins at a specific job, set the marker request parameter
to the Marker
value for that job that you obtained from a previous List Jobs
request.
You can set a maximum limit for the number of jobs returned in the response by specifying
the limit
parameter in the request. The default limit is 50. The number of
jobs returned might be fewer than the limit, but the number of returned jobs never
exceeds the limit.
Additionally, you can filter the jobs list returned by specifying the optional statuscode
parameter or completed
parameter, or both. Using the statuscode
parameter,
you can specify to return only jobs that match either the InProgress
, Succeeded
,
or Failed
status. Using the completed
parameter, you can specify to
return only jobs that were completed (true
) or jobs that were not completed
(false
).
For more information about using this operation, see the documentation for the underlying REST API List Jobs.
Namespace: Amazon.Glacier.Model
Assembly: AWSSDK.Glacier.dll
Version: 3.x.y.z
public class ListJobsRequest : AmazonGlacierRequest IAmazonWebServiceRequest
The ListJobsRequest type exposes the following members
Name | Description | |
---|---|---|
ListJobsRequest() |
Empty constructor used to set properties independently even when a simple constructor is available |
|
ListJobsRequest(string) |
Instantiates ListJobsRequest with the parameterized properties |
|
ListJobsRequest(string, string) |
Instantiates ListJobsRequest with the parameterized properties |
Name | Type | Description | |
---|---|---|---|
AccountId | System.String |
Gets and sets the property AccountId.
The |
|
Completed | System.Boolean |
Gets and sets the property Completed.
The state of the jobs to return. You can specify |
|
Limit | System.Int32 |
Gets and sets the property Limit. The maximum number of jobs to be returned. The default limit is 50. The number of jobs returned might be fewer than the specified limit, but the number of returned jobs never exceeds the limit. |
|
Marker | System.String |
Gets and sets the property Marker. An opaque string used for pagination. This value specifies the job at which the listing of jobs should begin. Get the marker value from a previous List Jobs response. You only need to include the marker if you are continuing the pagination of results started in a previous List Jobs request. |
|
Statuscode | System.String |
Gets and sets the property Statuscode.
The type of job status to return. You can specify the following values: |
|
VaultName | System.String |
Gets and sets the property VaultName. The name of the vault. |
The example lists jobs for the vault named my-vault.
var client = new AmazonGlacierClient(); var response = client.ListJobs(new ListJobsRequest { AccountId = "-", VaultName = "my-vault" }); List<GlacierJobDescription> jobList = response.JobList;
.NET:
Supported in: 8.0 and newer, Core 3.1
.NET Standard:
Supported in: 2.0
.NET Framework:
Supported in: 4.5 and newer, 3.5