import * as omics from "@distilled.cloud/aws/omics"; import * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { SequenceStore } from "./SequenceStore.ts"; export interface GetReadSetRequest extends Omit { } /** * Runtime binding for `omics:GetReadSet`. * * Bind this operation to a `SequenceStore` to get a callable that streams the bytes of a read set file part — the * store/workflow id is injected automatically and the action is granted on the * bound resource. Provide the implementation with * `Effect.provide(AWS.Omics.GetReadSetHttp)`. * ### Read Sets * **Example:** Bind GetReadSet to a SequenceStore * ```typescript * // init * const getReadSet = yield* AWS.Omics.GetReadSet(store); * // runtime * const result = yield* getReadSet({}); * ``` * * @binding */ export interface GetReadSet extends Binding.Service Effect.Effect<(request?: GetReadSetRequest) => Effect.Effect>> { } export declare const GetReadSet: GetReadSet; //# sourceMappingURL=GetReadSet.d.ts.map