import type * as comprehendmedical from "@distilled.cloud/aws/comprehendmedical"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for `comprehendmedical:StopEntitiesDetectionV2Job` — stop an in-progress asynchronous medical entity detection job. * * Comprehend Medical has no resource-level IAM, so the binding takes no * arguments and grants `comprehendmedical:StopEntitiesDetectionV2Job` on `*`. Provide the * implementation with `Effect.provide(AWS.ComprehendMedical.StopEntitiesDetectionV2JobHttp)`. * * ### Batch Entity Detection Jobs * **Example:** Stop a Running Job * ```typescript * // init * const stopEntitiesDetectionV2Job = yield* AWS.ComprehendMedical.StopEntitiesDetectionV2Job(); * * // runtime * yield* stopEntitiesDetectionV2Job({ JobId: jobId }); * ``` * * @binding */ export interface StopEntitiesDetectionV2Job extends Binding.Service Effect.Effect<(request: comprehendmedical.StopEntitiesDetectionV2JobRequest) => Effect.Effect>> { } export declare const StopEntitiesDetectionV2Job: StopEntitiesDetectionV2Job; //# sourceMappingURL=StopEntitiesDetectionV2Job.d.ts.map