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 information about a specific cluster including shipping information, cluster status, and other important metadata.

Note:

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

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

Syntax

C#
public virtual DescribeClusterResponse DescribeCluster(
         DescribeClusterRequest request
)

Parameters

request
Type: Amazon.Snowball.Model.DescribeClusterRequest

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

Return Value


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

Exceptions

ExceptionCondition
InvalidResourceException The specified resource can't be found. Check the information you provided in your last request, and try again.

Examples

Returns information about a specific cluster including shipping information, cluster status, and other important metadata.

To describe a cluster


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

ClusterMetadata clusterMetadata = response.ClusterMetadata;

            

Version Information

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

See Also