Skip to main content

pickup_locations

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

Overview

Namepickup_locations
TypeResource
Idaws.snowball.pickup_locations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
addressesarrayInformation about the address of pickup locations.
next_tokenstringHTTP 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:

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

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

SELECT examples

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
;