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 the Snow Family service limit for your account, and also the number of Snow devices your account has in use.

The default service limit for the number of Snow devices that you can have at one time is 1. If you want to increase your service limit, contact Amazon Web Services Support.

Note:

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

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

Syntax

C#
public abstract GetSnowballUsageResponse GetSnowballUsage(
         GetSnowballUsageRequest request
)

Parameters

request
Type: Amazon.Snowball.Model.GetSnowballUsageRequest

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

Return Value


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

Examples

Returns information about the Snowball service limit for your account, and also the number of Snowballs your account has in use. The default service limit for the number of Snowballs that you can have at one time is 1. If you want to increase your service limit, contact AWS Support.

To see your Snowball service limit and the number of Snowballs you have in use


var client = new AmazonSnowballClient();
var response = client.GetSnowballUsage(new GetSnowballUsageRequest 
{
});

int snowballLimit = response.SnowballLimit;
int snowballsInUse = response.SnowballsInUse;

            

Version Information

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

See Also