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/inspector.ts?docs=full";

Contains information about an Amazon Inspector finding. This data type is used as the response element in the "DescribeFindings" action.

interface Finding {
arn: string;
assetAttributes?: AssetAttributes | null;
assetType?: AssetType | null;
attributes: Attribute[];
confidence?: number | null;
createdAt: Date | number;
description?: string | null;
id?: string | null;
indicatorOfCompromise?: boolean | null;
numericSeverity?: number | null;
recommendation?: string | null;
schemaVersion?: number | null;
service?: string | null;
serviceAttributes?: InspectorServiceAttributes | null;
severity?: Severity | null;
title?: string | null;
updatedAt: Date | number;
userAttributes: Attribute[];
}

§Properties

§
arn: string
[src]

The ARN that specifies the finding.

§
assetAttributes?: AssetAttributes | null
[src]

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

§
assetType?: AssetType | null
[src]

The type of the host from which the finding is generated.

§
attributes: Attribute[]
[src]

The system-defined attributes for the finding.

§
confidence?: number | null
[src]

This data element is currently not used.

§
createdAt: Date | number
[src]

The time when the finding was generated.

§
description?: string | null
[src]

The description of the finding.

§
id?: string | null
[src]

The ID of the finding.

§
indicatorOfCompromise?: boolean | null
[src]

This data element is currently not used.

§
numericSeverity?: number | null
[src]

The numeric value of the finding severity.

§
recommendation?: string | null
[src]

The recommendation for the finding.

§
schemaVersion?: number | null
[src]

The schema version of this data type.

§
service?: string | null
[src]

The data element is set to "Inspector".

§
serviceAttributes?: InspectorServiceAttributes | null
[src]

This data type is used in the "Finding" data type.

§
severity?: Severity | null
[src]

The finding severity. Values can be set to High, Medium, Low, and Informational.

§
title?: string | null
[src]

The name of the finding.

§
updatedAt: Date | number
[src]

The time when "AddAttributesToFindings" is called.

§
userAttributes: Attribute[]
[src]

The user-defined attributes that are assigned to the finding.