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

AssessmentTemplate

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

Contains information about an Amazon Inspector assessment template. This data type is used as the response element in the "DescribeAssessmentTemplates" action.

interface AssessmentTemplate {
arn: string;
assessmentRunCount: number;
assessmentTargetArn: string;
createdAt: Date | number;
durationInSeconds: number;
lastAssessmentRunArn?: string | null;
name: string;
rulesPackageArns: string[];
userAttributesForFindings: Attribute[];
}

§Properties

§
arn: string
[src]

The ARN of the assessment template.

§
assessmentRunCount: number
[src]

The number of existing assessment runs associated with this assessment template. This value can be zero or a positive integer.

§
assessmentTargetArn: string
[src]

The ARN of the assessment target that corresponds to this assessment template.

§
createdAt: Date | number
[src]

The time at which the assessment template is created.

§
durationInSeconds: number
[src]

The duration in seconds specified for this assessment template. The default value is 3600 seconds (one hour). The maximum value is 86400 seconds (one day).

§
lastAssessmentRunArn?: string | null
[src]

The Amazon Resource Name (ARN) of the most recent assessment run associated with this assessment template. This value exists only when the value of assessmentRunCount is greaterpa than zero.

§
name: string
[src]

The name of the assessment template.

§
rulesPackageArns: string[]
[src]

The rules packages that are specified for this assessment template.

§
userAttributesForFindings: Attribute[]
[src]

The user-defined attributes that are assigned to every generated finding from the assessment run that uses this assessment template.