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

EnhancedImageScanFinding

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

The details of an enhanced image scan. This is returned when enhanced scanning is enabled for your private registry.

interface EnhancedImageScanFinding {
awsAccountId?: string | null;
description?: string | null;
findingArn?: string | null;
firstObservedAt?: Date | number | null;
lastObservedAt?: Date | number | null;
packageVulnerabilityDetails?: PackageVulnerabilityDetails | null;
remediation?: Remediation | null;
resources?: Resource[] | null;
score?: number | null;
scoreDetails?: ScoreDetails | null;
severity?: string | null;
status?: string | null;
title?: string | null;
type?: string | null;
updatedAt?: Date | number | null;
}

§Properties

§
awsAccountId?: string | null
[src]

The Amazon Web Services account ID associated with the image.

§
description?: string | null
[src]

The description of the finding.

§
findingArn?: string | null
[src]

The Amazon Resource Number (ARN) of the finding.

§
firstObservedAt?: Date | number | null
[src]

The date and time that the finding was first observed.

§
lastObservedAt?: Date | number | null
[src]

The date and time that the finding was last observed.

§
packageVulnerabilityDetails?: PackageVulnerabilityDetails | null
[src]

An object that contains the details of a package vulnerability finding.

§
remediation?: Remediation | null
[src]

An object that contains the details about how to remediate a finding.

§
resources?: Resource[] | null
[src]

Contains information on the resources involved in a finding.

§
score?: number | null
[src]

The Amazon Inspector score given to the finding.

§
scoreDetails?: ScoreDetails | null
[src]

An object that contains details of the Amazon Inspector score.

§
severity?: string | null
[src]

The severity of the finding.

§
status?: string | null
[src]

The status of the finding.

§
title?: string | null
[src]

The title of the finding.

§
type?: string | null
[src]

The type of the finding.

§
updatedAt?: Date | number | null
[src]

The date and time the finding was last updated at.