import type * as comprehend from "@distilled.cloud/aws/comprehend"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for `comprehend:DescribeDominantLanguageDetectionJob` — get the * properties (status, input/output config, timings) of an asynchronous * dominant-language detection job started with {@link StartDominantLanguageDetectionJob}. * * The binding takes no arguments and grants the action on `*` (job APIs * have no resource-level IAM). * * ### Monitoring Analysis Jobs * **Example:** Poll a DominantLanguageDetection Job * ```typescript * // init * const describeDominantLanguageDetectionJob = yield* AWS.Comprehend.DescribeDominantLanguageDetectionJob(); * * // runtime * const job = yield* describeDominantLanguageDetectionJob({ JobId: jobId }); * // job.DominantLanguageDetectionJobProperties?.JobStatus: "SUBMITTED" | "IN_PROGRESS" | "COMPLETED" | … * ``` * * @binding */ export interface DescribeDominantLanguageDetectionJob extends Binding.Service Effect.Effect<(request: comprehend.DescribeDominantLanguageDetectionJobRequest) => Effect.Effect>> { } export declare const DescribeDominantLanguageDetectionJob: DescribeDominantLanguageDetectionJob; //# sourceMappingURL=DescribeDominantLanguageDetectionJob.d.ts.map