import type * as guardduty from "@distilled.cloud/aws/guardduty"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Detector } from "./Detector.ts"; /** * Runtime binding for `guardduty:DescribeMalwareScans`. * * Lists EC2 malware scan results for the detector with optional filter and sort criteria. * The detector id is injected from the bound {@link Detector}. * Provide the implementation with * `Effect.provide(AWS.GuardDuty.DescribeMalwareScansHttp)`. * ### Malware Protection * **Example:** List Malware Scan Results * ```typescript * // init * const describeMalwareScans = yield* AWS.GuardDuty.DescribeMalwareScans(detector); * * // runtime * const { Scans } = yield* describeMalwareScans(); * ``` * * @binding */ export interface DescribeMalwareScans extends Binding.Service Effect.Effect<(request?: Omit) => Effect.Effect>> { } export declare const DescribeMalwareScans: DescribeMalwareScans; //# sourceMappingURL=DescribeMalwareScans.d.ts.map