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

SeverityCounts

import type { SeverityCounts } from "https://aws-api.deno.dev/v0.3/services/inspector2.ts?docs=full";

An object that contains the counts of aggregated finding per severity.

interface SeverityCounts {
all?: number | null;
critical?: number | null;
high?: number | null;
medium?: number | null;
}

§Properties

§
all?: number | null
[src]

The total count of findings from all severities.

§
critical?: number | null
[src]

The total count of critical severity findings.

§
high?: number | null
[src]

The total count of high severity findings.

§
medium?: number | null
[src]

The total count of medium severity findings.