Skip to content

ListHarvestJobs

Source: src/AWS/MediaPackageV2/ListHarvestJobs.ts

Runtime binding for mediapackagev2:ListHarvestJobs.

Enumerates the harvest jobs in the bound ChannelGroup, optionally filtered by channel, endpoint, or status — e.g. a dashboard Lambda listing in-progress clip exports. The group’s name is injected from the binding. Provide the implementation with Effect.provide(AWS.MediaPackageV2.ListHarvestJobsHttp).

// init — bind the operation to the channel group
const listHarvestJobs = yield* AWS.MediaPackageV2.ListHarvestJobs(group);
// runtime
const { Items } = yield* listHarvestJobs({ Status: "QUEUED" });