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

Condition

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

Contains information about the condition.

interface Condition {
Eq?: string[] | null;
Equals?: string[] | null;
GreaterThan?: number | null;
GreaterThanOrEqual?: number | null;
Gt?: number | null;
Gte?: number | null;
LessThan?: number | null;
LessThanOrEqual?: number | null;
Lt?: number | null;
Lte?: number | null;
Neq?: string[] | null;
NotEquals?: string[] | null;
}

§Properties

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

Represents the equal condition to be applied to a single field when querying for findings.

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

Represents an equal ** condition to be applied to a single field when querying for findings.

§
GreaterThan?: number | null
[src]

Represents a greater than condition to be applied to a single field when querying for findings.

§
GreaterThanOrEqual?: number | null
[src]

Represents a greater than or equal condition to be applied to a single field when querying for findings.

§
Gt?: number | null
[src]

Represents a greater than condition to be applied to a single field when querying for findings.

§
Gte?: number | null
[src]

Represents a greater than or equal condition to be applied to a single field when querying for findings.

§
LessThan?: number | null
[src]

Represents a less than condition to be applied to a single field when querying for findings.

§
LessThanOrEqual?: number | null
[src]

Represents a less than or equal condition to be applied to a single field when querying for findings.

§
Lt?: number | null
[src]

Represents a less than condition to be applied to a single field when querying for findings.

§
Lte?: number | null
[src]

Represents a less than or equal condition to be applied to a single field when querying for findings.

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

Represents the not equal condition to be applied to a single field when querying for findings.

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

Represents a not equal ** condition to be applied to a single field when querying for findings.