Skip to main content

snowball_usages

Creates, updates, deletes, gets or lists a snowball_usages resource.

Overview

Namesnowball_usages
TypeResource
Idaws.snowball.snowball_usages

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
snowball_limitintegerThe service limit for number of Snow devices this account can have at once. The default service limit is 1 (one).
snowballs_in_useintegerThe number of Snow devices that this account is currently using.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_snowball_usageselectregionReturns 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.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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.

SELECT
snowball_limit,
snowballs_in_use
FROM aws.snowball.snowball_usages
WHERE region = '{{ region }}' -- required
;