pickup_locations
Creates, updates, deletes, gets or lists a pickup_locations resource.
Overview
| Name | pickup_locations |
| Type | Resource |
| Id | aws.snowball.pickup_locations |
Fields
The following fields are returned by SELECT queries:
- list_pickup_locations
| Name | Datatype | Description |
|---|---|---|
addresses | array | Information about the address of pickup locations. |
next_token | string | HTTP requests are stateless. To identify what object comes "next" in the list of ListPickupLocationsResult objects, you have the option of specifying NextToken as the starting point for your returned list. (pattern: <code>.*</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_pickup_locations | select | region | A list of locations from which the customer can choose to pickup a device. |
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
- list_pickup_locations
A list of locations from which the customer can choose to pickup a device.
SELECT
addresses,
next_token
FROM aws.snowball.pickup_locations
WHERE region = '{{ region }}' -- required
;