Skip to main content

jobs_query_results

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

Overview

Namejobs_query_results
TypeResource
Idaws.mediaconvert.jobs_query_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
jobsarrayList of jobs.
next_tokenstringUse this string to request the next batch of jobs via the StartJobsQuery API.
statusstringThe status of the jobs query. (SUBMITTED, PROGRESSING, COMPLETE, ERROR)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_jobs_query_resultsselectid, regionRetrieve 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.

NameDatatypeDescription
idstringThe ID of the jobs query.
regionstringAWS region (default: us-east-1)

SELECT examples

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
;