jobs_query_results
Creates, updates, deletes, gets or lists a jobs_query_results resource.
Overview
| Name | jobs_query_results |
| Type | Resource |
| Id | aws.mediaconvert.jobs_query_results |
Fields
The following fields are returned by SELECT queries:
- get_jobs_query_results
| Name | Datatype | Description |
|---|---|---|
jobs | array | List of jobs. |
next_token | string | Use this string to request the next batch of jobs via the StartJobsQuery API. |
status | string | The status of the jobs query. (SUBMITTED, PROGRESSING, COMPLETE, ERROR) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_jobs_query_results | select | id, region | Retrieve a JSON array of up to twenty of your most recent jobs matched by a jobs query. |
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 |
|---|---|---|
id | string | The ID of the jobs query. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_jobs_query_results
Retrieve a JSON array of up to twenty of your most recent jobs matched by a jobs query.
SELECT
jobs,
next_token,
status
FROM aws.mediaconvert.jobs_query_results
WHERE id = '{{ id }}' -- required
AND region = '{{ region }}' -- required
;