import type * as SVC from "@distilled.cloud/aws/databrew"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Job } from "./Job.ts"; export interface DescribeJobRunRequest extends Omit { } /** * Runtime binding for `databrew:DescribeJobRun` — reads the state, * timings, and outputs of one run of the bound DataBrew job. * ### Observing Job Runs * **Example:** Poll a Run's State * ```typescript * const describeJobRun = yield* AWS.DataBrew.DescribeJobRun(job); * * const run = yield* describeJobRun({ RunId: runId }); * // run.State: "STARTING" | "RUNNING" | "SUCCEEDED" | ... * ``` * * @binding */ export interface DescribeJobRun extends Binding.Service(job: J) => Effect.Effect<(request: DescribeJobRunRequest) => Effect.Effect>> { } export declare const DescribeJobRun: DescribeJobRun; //# sourceMappingURL=DescribeJobRun.d.ts.map