import type * as inspector2 from "@distilled.cloud/aws/inspector2"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for `inspector2:GetSbomExport`. * * Gets details of a software bill of materials (SBOM) report. * * Provide the implementation with * `Effect.provide(AWS.Inspector2.GetSbomExportHttp)`. * ### Findings Reports & SBOM Exports * **Example:** Poll an SBOM Export * ```typescript * // init * const getSbomExport = yield* AWS.Inspector2.GetSbomExport(); * * // runtime * const { status } = yield* getSbomExport({ reportId }); * ``` * * @binding */ export interface GetSbomExport extends Binding.Service Effect.Effect<(request: inspector2.GetSbomExportRequest) => Effect.Effect>> { } export declare const GetSbomExport: GetSbomExport; //# sourceMappingURL=GetSbomExport.d.ts.map