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

ImageScanFinding

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

Contains information about an image scan finding.

interface ImageScanFinding {
attributes?: Attribute[] | null;
description?: string | null;
name?: string | null;
severity?: FindingSeverity | null;
uri?: string | null;
}

§Properties

§
attributes?: Attribute[] | null
[src]

A collection of attributes of the host from which the finding is generated.

§
description?: string | null
[src]

The description of the finding.

§
name?: string | null
[src]

The name associated with the finding, usually a CVE number.

§
severity?: FindingSeverity | null
[src]

The finding severity.

§
uri?: string | null
[src]

A link containing additional details about the security vulnerability.