AWS SDK Version 3 for .NET
API Reference

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.

This is the response object from the ListJobs operation.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceResponse
    Amazon.Batch.Model.ListJobsResponse

Namespace: Amazon.Batch.Model
Assembly: AWSSDK.Batch.dll
Version: 3.x.y.z

Syntax

C#
public class ListJobsResponse : AmazonWebServiceResponse

The ListJobsResponse type exposes the following members

Constructors

NameDescription
Public Method ListJobsResponse()

Properties

NameTypeDescription
Public Property ContentLength System.Int64 Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property HttpStatusCode System.Net.HttpStatusCode Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property JobSummaryList System.Collections.Generic.List<Amazon.Batch.Model.JobSummary>

Gets and sets the property JobSummaryList.

A list of job summaries that match the request.

Public Property NextToken System.String

Gets and sets the property NextToken.

The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

Public Property ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.

Examples

This example lists the running jobs in the HighPriority job queue.

To list running jobs


var client = new AmazonBatchClient();
var response = client.ListJobs(new ListJobsRequest 
{
    JobQueue = "HighPriority"
});

List<JobSummary> jobSummaryList = response.JobSummaryList;

            

This example lists jobs in the HighPriority job queue that are in the SUBMITTED job status.

To list submitted jobs


var client = new AmazonBatchClient();
var response = client.ListJobs(new ListJobsRequest 
{
    JobQueue = "HighPriority",
    JobStatus = "SUBMITTED"
});

List<JobSummary> jobSummaryList = response.JobSummaryList;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5