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

AssessmentRun

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

A snapshot of an Amazon Inspector assessment run that contains the findings of the assessment run .

Used as the response element in the "DescribeAssessmentRuns" action.

interface AssessmentRun {
arn: string;
assessmentTemplateArn: string;
completedAt?: Date | number | null;
createdAt: Date | number;
dataCollected: boolean;
durationInSeconds: number;
findingCounts: [key in Severity]: number | null | undefined;
name: string;
notifications: AssessmentRunNotification[];
rulesPackageArns: string[];
startedAt?: Date | number | null;
stateChangedAt: Date | number;
stateChanges: AssessmentRunStateChange[];
userAttributesForFindings: Attribute[];
}

§Properties

§
arn: string
[src]

The ARN of the assessment run.

§
assessmentTemplateArn: string
[src]

The ARN of the assessment template that is associated with the assessment run.

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

The assessment run completion time that corresponds to the rules packages evaluation completion time or failure.

§
createdAt: Date | number
[src]

The time when "StartAssessmentRun" was called.

§
dataCollected: boolean
[src]

A Boolean value (true or false) that specifies whether the process of collecting data from the agents is completed.

§
durationInSeconds: number
[src]

The duration of the assessment run.

§
findingCounts: [key in Severity]: number | null | undefined
[src]

Provides a total count of generated findings per severity.

§
name: string
[src]

The auto-generated name for the assessment run.

§

A list of notifications for the event subscriptions. A notification about a particular generated finding is added to this list only once.

§
rulesPackageArns: string[]
[src]

The rules packages selected for the assessment run.

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

The time when "StartAssessmentRun" was called.

§

The state of the assessment run.

§
stateChangedAt: Date | number
[src]

The last time when the assessment run's state changed.

§

A list of the assessment run state changes.

§
userAttributesForFindings: Attribute[]
[src]

The user-defined attributes that are assigned to every generated finding.