Skip to main content

shipping_labels

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

Overview

Nameshipping_labels
TypeResource
Idaws.importexport.shipping_labels

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
line_itemsarray

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_shipping_labelselectjobIds, regionname, company, phoneNumber, country, stateOrProvince, city, postalCode, street1, street2, street3, APIVersionThis 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.

NameDatatypeDescription
jobIdsarray
regionstringAWS region (default: us-east-1)
APIVersionstring
citystring
companystring
countrystring
namestring
phoneNumberstring
postalCodestring
stateOrProvincestring
street1string
street2string
street3string

SELECT examples

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 }}'
;