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 DescribeRuleGroupMetadataRequest extends Omit { } /** * Runtime binding for `network-firewall:DescribeRuleGroupMetadata` — read * the high-level metadata (type, capacity, last-modified time) of the bound * {@link RuleGroup} without fetching the full rules definition; the rule * group ARN is injected automatically. * * Provide `NetworkFirewall.DescribeRuleGroupMetadataHttp` on the hosting * Lambda Function to satisfy the requirement. * ### Reading Rule Group State * **Example:** Read Rule Group Metadata * ```typescript * // init — grants network-firewall:DescribeRuleGroupMetadata on the rule group * const describeRuleGroupMetadata = * yield* AWS.NetworkFirewall.DescribeRuleGroupMetadata(ruleGroup); * * // runtime * const { Capacity } = yield* describeRuleGroupMetadata(); * ``` * * @binding */ export interface DescribeRuleGroupMetadata extends Binding.Service Effect.Effect<(request?: DescribeRuleGroupMetadataRequest) => Effect.Effect>> { } export declare const DescribeRuleGroupMetadata: DescribeRuleGroupMetadata; //# sourceMappingURL=DescribeRuleGroupMetadata.d.ts.map