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 StartReadSetImportJobRequest extends Omit { } /** * Runtime binding for `omics:StartReadSetImportJob`. * * Bind this operation to a `SequenceStore` to get a callable that starts an import job that ingests read sets into the store — the * store/workflow id is injected automatically and the action is granted on the * bound resource. Provide the implementation with * `Effect.provide(AWS.Omics.StartReadSetImportJobHttp)`. * ### Read Sets * **Example:** Bind StartReadSetImportJob to a SequenceStore * ```typescript * // init * const startReadSetImportJob = yield* AWS.Omics.StartReadSetImportJob(store); * // runtime * const result = yield* startReadSetImportJob({}); * ``` * * @binding */ export interface StartReadSetImportJob extends Binding.Service Effect.Effect<(request?: StartReadSetImportJobRequest) => Effect.Effect>> { } export declare const StartReadSetImportJob: StartReadSetImportJob; //# sourceMappingURL=StartReadSetImportJob.d.ts.map