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

Criterion

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

The criteria to use in the filter that defines the archive rule. For more information on available filter keys, see IAM Access Analyzer filter keys.

interface Criterion {
contains?: string[] | null;
eq?: string[] | null;
exists?: boolean | null;
neq?: string[] | null;
}

§Properties

§
contains?: string[] | null
[src]

A "contains" operator to match for the filter used to create the rule.

§
eq?: string[] | null
[src]

An "equals" operator to match for the filter used to create the rule.

§
exists?: boolean | null
[src]

An "exists" operator to match for the filter used to create the rule.

§
neq?: string[] | null
[src]

A "not equals" operator to match for the filter used to create the rule.