snowball_usages
Creates, updates, deletes, gets or lists a snowball_usages resource.
Overview
| Name | snowball_usages |
| Type | Resource |
| Id | aws.snowball.snowball_usages |
Fields
The following fields are returned by SELECT queries:
- get_snowball_usage
| Name | Datatype | Description |
|---|---|---|
snowball_limit | integer | The service limit for number of Snow devices this account can have at once. The default service limit is 1 (one). |
snowballs_in_use | integer | The number of Snow devices that this account is currently using. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_snowball_usage | select | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- 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.
SELECT
snowball_limit,
snowballs_in_use
FROM aws.snowball.snowball_usages
WHERE region = '{{ region }}' -- required
;