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 ClusterListEntry objects of the specified length. Each ClusterListEntry object contains a cluster's state, a cluster's ID, and other important status information.

Note:

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

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

Syntax

C#
public abstract ListClustersResponse ListClusters(
         ListClustersRequest request
)

Parameters

request
Type: Amazon.Snowball.Model.ListClustersRequest

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

Return Value


The response from the ListClusters 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.

Examples

Returns an array of ClusterListEntry objects of the specified length. Each ClusterListEntry object contains a cluster's state, a cluster's ID, and other important status information.

To get a list of clusters that you've created for AWS Snowball


var client = new AmazonSnowballClient();
var response = client.ListClusters(new ListClustersRequest 
{
});

List<ClusterListEntry> clusterListEntries = response.ClusterListEntries;

            

Version Information

.NET Framework:
Supported in: 4.5 and newer, 3.5

See Also