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.

Returns an array of JobListEntry objects of the specified length. Each JobListEntry object is for a job in the specified cluster and contains a job's state, a job's ID, and other information.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to ListClusterJobsAsync.

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

Syntax

C#
public virtual ListClusterJobsResponse ListClusterJobs(
         ListClusterJobsRequest request
)

Parameters

request
Type: Amazon.Snowball.Model.ListClusterJobsRequest

Container for the necessary parameters to execute the ListClusterJobs service method.

Return Value


The response from the ListClusterJobs service method, as returned by Snowball.

Exceptions

ExceptionCondition
InvalidNextTokenException The NextToken string was altered unexpectedly, and the operation has stopped. Run the operation without changing the NextToken string, and try again.
InvalidResourceException The specified resource can't be found. Check the information you provided in your last request, and try again.

Examples

Returns an array of JobListEntry objects of the specified length. Each JobListEntry object is for a job in the specified cluster and contains a job's state, a job's ID, and other information.

To get a list of jobs in a cluster that you've created for AWS Snowball


var client = new AmazonSnowballClient();
var response = client.ListClusterJobs(new ListClusterJobsRequest 
{
    ClusterId = "CID123e4567-e89b-12d3-a456-426655440000"
});

List<JobListEntry> jobListEntries = response.JobListEntries;

            

Version Information

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

See Also