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

AssessmentControl

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

The control entity that represents a standard control or a custom control in an Audit Manager assessment.

interface AssessmentControl {
assessmentReportEvidenceCount?: number | null;
comments?: ControlComment[] | null;
description?: string | null;
evidenceCount?: number | null;
evidenceSources?: string[] | null;
id?: string | null;
name?: string | null;
response?: ControlResponse | null;
status?: ControlStatus | null;
}

§Properties

§
assessmentReportEvidenceCount?: number | null
[src]

The amount of evidence in the assessment report.

§
comments?: ControlComment[] | null
[src]

The list of comments that's attached to the control.

§
description?: string | null
[src]

The description of the control.

§
evidenceCount?: number | null
[src]

The amount of evidence that's collected for the control.

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

The list of data sources for the evidence.

§
id?: string | null
[src]

The identifier for the control.

§
name?: string | null
[src]

The name of the control.

§
response?: ControlResponse | null
[src]

The response of the control.

§
status?: ControlStatus | null
[src]

The status of the control.