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

Finding

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

Details about an Amazon Inspector finding.

interface Finding {
awsAccountId: string;
description: string;
findingArn: string;
firstObservedAt: Date | number;
inspectorScore?: number | null;
inspectorScoreDetails?: InspectorScoreDetails | null;
lastObservedAt: Date | number;
networkReachabilityDetails?: NetworkReachabilityDetails | null;
packageVulnerabilityDetails?: PackageVulnerabilityDetails | null;
remediation: Remediation;
resources: Resource[];
severity: Severity;
status: FindingStatus;
title?: string | null;
updatedAt?: Date | number | null;
}

§Properties

§
awsAccountId: string
[src]

The Amazon Web Services account ID associated with the finding.

§
description: string
[src]

The description of the finding.

§
findingArn: string
[src]

The Amazon Resource Number (ARN) of the finding.

§
firstObservedAt: Date | number
[src]

The date and time that the finding was first observed.

§
inspectorScore?: number | null
[src]

The Amazon Inspector score given to the finding.

§
inspectorScoreDetails?: InspectorScoreDetails | null
[src]

An object that contains details of the Amazon Inspector score.

§
lastObservedAt: Date | number
[src]

The date and time that the finding was last observed.

§
networkReachabilityDetails?: NetworkReachabilityDetails | null
[src]

An object that contains the details of a network reachability finding.

§
packageVulnerabilityDetails?: PackageVulnerabilityDetails | null
[src]

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

§
remediation: Remediation
[src]

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

§
resources: Resource[]
[src]

Contains information on the resources involved in a finding.

§
severity: Severity
[src]

The severity of the finding.

§

The status of the finding.

§
title?: string | null
[src]

The title of the finding.

§

The type of the finding.

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

The date and time the finding was last updated at.