Skip to main content

status

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

Overview

Namestatus
TypeResource
Idaws.importexport.status

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_statusselectJobId, regionAPIVersionThis operation returns information about a job, including where the job is in the processing pipeline, the status of the results, and the signature value associated with the job. You can only return information about jobs you own.

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
JobIdstring
regionstringAWS region (default: us-east-1)
APIVersionstring

SELECT examples

This operation returns information about a job, including where the job is in the processing pipeline, the status of the results, and the signature value associated with the job. You can only return information about jobs you own.

SELECT
line_items
FROM aws.importexport.status
WHERE JobId = '{{ JobId }}' -- required
AND region = '{{ region }}' -- required
AND APIVersion = '{{ APIVersion }}'
;