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 GetLineageNodeRequest extends Omit { } /** * Runtime binding for `datazone:GetLineageNode`. * * Reads a data lineage node in the bound domain. The domain id is injected from the binding. * Provide the implementation with * `Effect.provide(AWS.DataZone.GetLineageNodeHttp)`. * ### Data Lineage * **Example:** Read a Lineage Node * ```typescript * // init — bind the operation to the domain * const getLineageNode = yield* AWS.DataZone.GetLineageNode(domain); * * // runtime * const node = yield* getLineageNode({ identifier: nodeId }); * ``` * * @binding */ export interface GetLineageNode extends Binding.Service Effect.Effect<(request: GetLineageNodeRequest) => Effect.Effect>> { } export declare const GetLineageNode: GetLineageNode; //# sourceMappingURL=GetLineageNode.d.ts.map