import type * as NFW from "@distilled.cloud/aws/network-firewall"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Firewall } from "./Firewall.ts"; export interface ListAnalysisReportsRequest extends Omit { } /** * Runtime binding for `network-firewall:ListAnalysisReports` — list the * traffic analysis reports generated for the bound {@link Firewall}; the * firewall ARN is injected automatically. * * Provide `NetworkFirewall.ListAnalysisReportsHttp` on the hosting Lambda * Function to satisfy the requirement. * ### Analysis Reports * **Example:** List Analysis Reports * ```typescript * // init — grants network-firewall:ListAnalysisReports on the firewall * const listAnalysisReports = * yield* AWS.NetworkFirewall.ListAnalysisReports(firewall); * * // runtime * const { AnalysisReports } = yield* listAnalysisReports(); * ``` * * @binding */ export interface ListAnalysisReports extends Binding.Service Effect.Effect<(request?: ListAnalysisReportsRequest) => Effect.Effect>> { } export declare const ListAnalysisReports: ListAnalysisReports; //# sourceMappingURL=ListAnalysisReports.d.ts.map