import type * as personalize from "@distilled.cloud/aws/personalize"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for `personalize:DescribeBatchInferenceJob` — Polls a batch inference job for completion — pairs with * {@link CreateBatchInferenceJob}. * Provide the implementation with * `Effect.provide(AWS.Personalize.DescribeBatchInferenceJobHttp)`. * * ### Batch Inference * **Example:** Poll a Batch Job * ```typescript * // init * const describeBatchInferenceJob = yield* Personalize.DescribeBatchInferenceJob(); * * const { batchInferenceJob } = yield* describeBatchInferenceJob({ * batchInferenceJobArn, * }); * const done = batchInferenceJob?.status === "ACTIVE"; * ``` * * @binding */ export interface DescribeBatchInferenceJob extends Binding.Service Effect.Effect<(request: personalize.DescribeBatchInferenceJobRequest) => Effect.Effect>> { } export declare const DescribeBatchInferenceJob: DescribeBatchInferenceJob; //# sourceMappingURL=DescribeBatchInferenceJob.d.ts.map