Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AndStatement

import type { AndStatement } from "https://aws-api.deno.dev/v0.4/services/wafv2.ts?docs=full";

A logical rule statement used to combine other rule statements with AND logic. You provide more than one "Statement" within the AndStatement.

interface AndStatement {
Statements: Statement[];
}

§Properties

§
Statements: Statement[]
[src]

The statements to combine with AND logic. You can use any statements that can be nested.