Snowball / Client / get_snowball_usage

get_snowball_usage#

Snowball.Client.get_snowball_usage()#

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.

See also: AWS API Documentation

Request Syntax

response = client.get_snowball_usage()
Return type:

dict

Returns:

Response Syntax

{
    'SnowballLimit': 123,
    'SnowballsInUse': 123
}

Response Structure

  • (dict) –

    • SnowballLimit (integer) –

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

    • SnowballsInUse (integer) –

      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.
response = client.get_snowball_usage(
)

print(response)

Expected Output:

{
    'SnowballLimit': 1,
    'SnowballsInUse': 0,
    'ResponseMetadata': {
        '...': '...',
    },
}