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:StartIdMappingJob`. * * Starts an ID mapping job run of the bound workflow — a batch process over * the workflow's full input that takes many minutes. Provide the * implementation with `Effect.provide(AWS.EntityResolution.StartIdMappingJobHttp)`. * ### Running ID Mapping Jobs * **Example:** Start a Job * ```typescript * // init — bind the operation to the workflow * const startIdMappingJob = yield* AWS.EntityResolution.StartIdMappingJob(workflow); * * // runtime * const { jobId } = yield* startIdMappingJob({}); * ``` * * @binding */ export interface StartIdMappingJob extends Binding.Service Effect.Effect<(request: Omit) => Effect.Effect>> { } export declare const StartIdMappingJob: StartIdMappingJob; //# sourceMappingURL=StartIdMappingJob.d.ts.map