import type * as entityresolution from "@distilled.cloud/aws/entityresolution"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { IdMappingWorkflow } from "./IdMappingWorkflow.ts"; /** * Runtime binding for `entityresolution:ListIdMappingJobs`. * * Lists the ID mapping job runs of the bound workflow. Provide the * implementation with `Effect.provide(AWS.EntityResolution.ListIdMappingJobsHttp)`. * ### Running ID Mapping Jobs * **Example:** List Recent Jobs * ```typescript * // init — bind the operation to the workflow * const listIdMappingJobs = yield* AWS.EntityResolution.ListIdMappingJobs(workflow); * * // runtime * const { jobs } = yield* listIdMappingJobs({}); * ``` * * @binding */ export interface ListIdMappingJobs extends Binding.Service Effect.Effect<(request: Omit) => Effect.Effect>> { } export declare const ListIdMappingJobs: ListIdMappingJobs; //# sourceMappingURL=ListIdMappingJobs.d.ts.map