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 DescribeFirewallRequest extends Omit { } /** * Runtime binding for `network-firewall:DescribeFirewall` — read the bound * {@link Firewall}'s configuration and status (sync states, endpoint ids, * capacity usage); the firewall ARN is injected automatically. * * Provide `NetworkFirewall.DescribeFirewallHttp` on the hosting Lambda * Function to satisfy the requirement. * ### Reading Firewall State * **Example:** Read the Firewall Status * ```typescript * // init — grants network-firewall:DescribeFirewall on the firewall * const describeFirewall = yield* AWS.NetworkFirewall.DescribeFirewall(firewall); * * // runtime * const { FirewallStatus } = yield* describeFirewall(); * ``` * * @binding */ export interface DescribeFirewall extends Binding.Service Effect.Effect<(request?: DescribeFirewallRequest) => Effect.Effect>> { } export declare const DescribeFirewall: DescribeFirewall; //# sourceMappingURL=DescribeFirewall.d.ts.map