status
Creates, updates, deletes, gets or lists a status resource.
Overview
| Name | status |
| Type | Resource |
| Id | aws.importexport.status |
Fields
The following fields are returned by SELECT queries:
- get_status
| Name | Datatype | Description |
|---|---|---|
line_items | array |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_status | select | JobId, region | APIVersion | 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. |
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 |
|---|---|---|
JobId | string | |
region | string | AWS region (default: us-east-1) |
APIVersion | string |
SELECT examples
- get_status
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 }}'
;