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 { RuleGroup } from "./RuleGroup.ts"; export interface DescribeRuleGroupSummaryRequest extends Omit { } /** * Runtime binding for `network-firewall:DescribeRuleGroupSummary` — read a * per-rule summary (SID, message, metadata) of the bound stateful * {@link RuleGroup}; the rule group ARN is injected automatically. Only * supported for `STATEFUL` rule groups. * * Provide `NetworkFirewall.DescribeRuleGroupSummaryHttp` on the hosting * Lambda Function to satisfy the requirement. * ### Reading Rule Group State * **Example:** Summarize the Stateful Rules * ```typescript * // init — grants network-firewall:DescribeRuleGroupSummary on the rule group * const describeRuleGroupSummary = * yield* AWS.NetworkFirewall.DescribeRuleGroupSummary(ruleGroup); * * // runtime * const { Summary } = yield* describeRuleGroupSummary(); * ``` * * @binding */ export interface DescribeRuleGroupSummary extends Binding.Service Effect.Effect<(request?: DescribeRuleGroupSummaryRequest) => Effect.Effect>> { } export declare const DescribeRuleGroupSummary: DescribeRuleGroupSummary; //# sourceMappingURL=DescribeRuleGroupSummary.d.ts.map