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:StopSNOMEDCTInferenceJob` — stop an in-progress asynchronous SNOMED CT ontology linking job. * * Comprehend Medical has no resource-level IAM, so the binding takes no * arguments and grants `comprehendmedical:StopSNOMEDCTInferenceJob` on `*`. Provide the * implementation with `Effect.provide(AWS.ComprehendMedical.StopSNOMEDCTInferenceJobHttp)`. * * ### Batch SNOMED CT Inference Jobs * **Example:** Stop a Running Job * ```typescript * // init * const stopSNOMEDCTInferenceJob = yield* AWS.ComprehendMedical.StopSNOMEDCTInferenceJob(); * * // runtime * yield* stopSNOMEDCTInferenceJob({ JobId: jobId }); * ``` * * @binding */ export interface StopSNOMEDCTInferenceJob extends Binding.Service Effect.Effect<(request: comprehendmedical.StopSNOMEDCTInferenceJobRequest) => Effect.Effect>> { } export declare const StopSNOMEDCTInferenceJob: StopSNOMEDCTInferenceJob; //# sourceMappingURL=StopSNOMEDCTInferenceJob.d.ts.map