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

AssessmentControlSet

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

Represents a set of controls in an Audit Manager assessment.

interface AssessmentControlSet {
controls?: AssessmentControl[] | null;
delegations?: Delegation[] | null;
description?: string | null;
id?: string | null;
manualEvidenceCount?: number | null;
roles?: Role[] | null;
status?: ControlSetStatus | null;
systemEvidenceCount?: number | null;
}

§Properties

§
controls?: AssessmentControl[] | null
[src]

The list of controls that's contained with the control set.

§
delegations?: Delegation[] | null
[src]

The delegations that are associated with the control set.

§
description?: string | null
[src]

The description for the control set.

§
id?: string | null
[src]

The identifier of the control set in the assessment. This is the control set name in a plain string format.

§
manualEvidenceCount?: number | null
[src]

The total number of evidence objects that are uploaded manually to the control set.

§
roles?: Role[] | null
[src]

The roles that are associated with the control set.

§
status?: ControlSetStatus | null
[src]

The current status of the control set.

§
systemEvidenceCount?: number | null
[src]

The total number of evidence objects that are retrieved automatically for the control set.