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

ImageScanFindings

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

The details of an image scan.

interface ImageScanFindings {
enhancedFindings?: EnhancedImageScanFinding[] | null;
findings?: ImageScanFinding[] | null;
findingSeverityCounts?: [key in FindingSeverity]: number | null | undefined | null;
imageScanCompletedAt?: Date | number | null;
vulnerabilitySourceUpdatedAt?: Date | number | null;
}

§Properties

§
enhancedFindings?: EnhancedImageScanFinding[] | null
[src]

Details about the enhanced scan findings from Amazon Inspector.

§
findings?: ImageScanFinding[] | null
[src]

The findings from the image scan.

§
findingSeverityCounts?: [key in FindingSeverity]: number | null | undefined | null
[src]

The image vulnerability counts, sorted by severity.

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

The time of the last completed image scan.

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

The time when the vulnerability data was last scanned.