shipping_labels
Creates, updates, deletes, gets or lists a shipping_labels resource.
Overview
| Name | shipping_labels |
| Type | Resource |
| Id | aws.importexport.shipping_labels |
Fields
The following fields are returned by SELECT queries:
- get_shipping_label
| Name | Datatype | Description |
|---|---|---|
line_items | array |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_shipping_label | select | jobIds, region | name, company, phoneNumber, country, stateOrProvince, city, postalCode, street1, street2, street3, APIVersion | This operation generates a pre-paid UPS shipping label that you will use to ship your device to AWS for processing. |
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 |
|---|---|---|
jobIds | array | |
region | string | AWS region (default: us-east-1) |
APIVersion | string | |
city | string | |
company | string | |
country | string | |
name | string | |
phoneNumber | string | |
postalCode | string | |
stateOrProvince | string | |
street1 | string | |
street2 | string | |
street3 | string |
SELECT examples
- get_shipping_label
This operation generates a pre-paid UPS shipping label that you will use to ship your device to AWS for processing.
SELECT
line_items
FROM aws.importexport.shipping_labels
WHERE jobIds = '{{ jobIds }}' -- required
AND region = '{{ region }}' -- required
AND name = '{{ name }}'
AND company = '{{ company }}'
AND phoneNumber = '{{ phoneNumber }}'
AND country = '{{ country }}'
AND stateOrProvince = '{{ stateOrProvince }}'
AND city = '{{ city }}'
AND postalCode = '{{ postalCode }}'
AND street1 = '{{ street1 }}'
AND street2 = '{{ street2 }}'
AND street3 = '{{ street3 }}'
AND APIVersion = '{{ APIVersion }}'
;