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 GetSnowballUsage operation.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceResponse
    Amazon.Snowball.Model.GetSnowballUsageResponse

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

Syntax

C#
public class GetSnowballUsageResponse : AmazonWebServiceResponse

The GetSnowballUsageResponse type exposes the following members

Constructors

NameDescription
Public Method GetSnowballUsageResponse()

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 ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property SnowballLimit System.Int32

Gets and sets the property SnowballLimit.

The service limit for number of Snow devices this account can have at once. The default service limit is 1 (one).

Public Property SnowballsInUse System.Int32

Gets and sets the property SnowballsInUse.

The number of Snow devices that this account is currently using.

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 Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

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