import type * as datazone from "@distilled.cloud/aws/datazone"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Domain } from "./Domain.ts"; export interface GetMetadataGenerationRunRequest extends Omit { } /** * Runtime binding for `datazone:GetMetadataGenerationRun`. * * Reads the status of a metadata generation run in the bound domain. The domain id is injected from the binding. * Provide the implementation with * `Effect.provide(AWS.DataZone.GetMetadataGenerationRunHttp)`. * ### Metadata Generation * **Example:** Check a Generation Run * ```typescript * // init — bind the operation to the domain * const getMetadataGenerationRun = yield* AWS.DataZone.GetMetadataGenerationRun(domain); * * // runtime * const run = yield* getMetadataGenerationRun({ identifier: runId }); * ``` * * @binding */ export interface GetMetadataGenerationRun extends Binding.Service Effect.Effect<(request: GetMetadataGenerationRunRequest) => Effect.Effect>> { } export declare const GetMetadataGenerationRun: GetMetadataGenerationRun; //# sourceMappingURL=GetMetadataGenerationRun.d.ts.map