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

PackageVulnerabilityDetails

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

Information about a package vulnerability finding.

interface PackageVulnerabilityDetails {
cvss?: CvssScore[] | null;
referenceUrls?: string[] | null;
relatedVulnerabilities?: string[] | null;
source?: string | null;
sourceUrl?: string | null;
vendorCreatedAt?: Date | number | null;
vendorSeverity?: string | null;
vendorUpdatedAt?: Date | number | null;
vulnerabilityId?: string | null;
vulnerablePackages?: VulnerablePackage[] | null;
}

§Properties

§
cvss?: CvssScore[] | null
[src]

An object that contains details about the CVSS score of a finding.

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

One or more URLs that contain details about this vulnerability type.

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

One or more vulnerabilities related to the one identified in this finding.

§
source?: string | null
[src]

The source of the vulnerability information.

§
sourceUrl?: string | null
[src]

A URL to the source of the vulnerability information.

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

The date and time that this vulnerability was first added to the vendor's database.

§
vendorSeverity?: string | null
[src]

The severity the vendor has given to this vulnerability type.

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

The date and time the vendor last updated this vulnerability in their database.

§
vulnerabilityId?: string | null
[src]

The ID given to this vulnerability.

§
vulnerablePackages?: VulnerablePackage[] | null
[src]

The packages impacted by this vulnerability.