GetJobsQueryResults
Source:
src/AWS/MediaConvert/GetJobsQueryResults.ts
Runtime binding for mediaconvert:GetJobsQueryResults — fetch the results
of an asynchronous jobs query started with StartJobsQuery.
The binding takes no arguments and grants
mediaconvert:GetJobsQueryResults on *. Provide the implementation with
Effect.provide(AWS.MediaConvert.GetJobsQueryResultsHttp).
Tracking Jobs
Section titled “Tracking Jobs”// initconst getJobsQueryResults = yield* AWS.MediaConvert.GetJobsQueryResults();
// runtimeconst results = yield* getJobsQueryResults({ Id: queryId });if (results.Status === "COMPLETE") { const jobs = results.Jobs ?? [];}