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

OrStatement

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

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

interface OrStatement {
Statements: Statement[];
}

§Properties

§
Statements: Statement[]
[src]

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