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

NumberFilter

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

A number filter for querying findings.

interface NumberFilter {
Eq?: number | null;
Gte?: number | null;
Lte?: number | null;
}

§Properties

§
Eq?: number | null
[src]

The equal-to condition to be applied to a single field when querying for findings.

§
Gte?: number | null
[src]

The greater-than-equal condition to be applied to a single field when querying for findings.

§
Lte?: number | null
[src]

The less-than-equal condition to be applied to a single field when querying for findings.