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

Evidence

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

A record that contains the information needed to demonstrate compliance with the requirements specified by a control. Examples of evidence include change activity invoked by a user, or a system configuration snapshot.

interface Evidence {
assessmentReportSelection?: string | null;
attributes?: {
[key: string]: string | null | undefined;
}
| null;
awsAccountId?: string | null;
awsOrganization?: string | null;
complianceCheck?: string | null;
dataSource?: string | null;
eventName?: string | null;
eventSource?: string | null;
evidenceAwsAccountId?: string | null;
evidenceByType?: string | null;
evidenceFolderId?: string | null;
iamId?: string | null;
id?: string | null;
resourcesIncluded?: Resource[] | null;
time?: Date | number | null;
}

§Properties

§
assessmentReportSelection?: string | null
[src]

Specifies whether the evidence is included in the assessment report.

§
attributes?: {
[key: string]: string | null | undefined;
}
| null
[src]

The names and values that are used by the evidence event. This includes an attribute name (such as allowUsersToChangePassword) and value (such as true or false).

§
awsAccountId?: string | null
[src]

The identifier for the Amazon Web Services account.

§
awsOrganization?: string | null
[src]

The Amazon Web Services account that the evidence is collected from, and its organization path.

§
complianceCheck?: string | null
[src]

The evaluation status for automated evidence that falls under the compliance check category.

  • Audit Manager classes evidence as non-compliant if Security Hub reports a Fail result, or if Config reports a Non-compliant result.
  • Audit Manager classes evidence as compliant if Security Hub reports a Pass result, or if Config reports a Compliant result.
  • If a compliance check isn't available or applicable, then no compliance evaluation can be made for that evidence. This is the case if the evidence uses Config or Security Hub as the underlying data source type, but those services aren't enabled. This is also the case if the evidence uses an underlying data source type that doesn't support compliance checks (such as manual evidence, Amazon Web Services API calls, or CloudTrail).
§
dataSource?: string | null
[src]

The data source where the evidence was collected from.

§
eventName?: string | null
[src]

The name of the evidence event.

§
eventSource?: string | null
[src]

The Amazon Web Service that the evidence is collected from.

§
evidenceAwsAccountId?: string | null
[src]

The identifier for the Amazon Web Services account.

§
evidenceByType?: string | null
[src]

The type of automated evidence.

§
evidenceFolderId?: string | null
[src]

The identifier for the folder that the evidence is stored in.

§
iamId?: string | null
[src]

The unique identifier for the user or role that's associated with the evidence.

§
id?: string | null
[src]

The identifier for the evidence.

§
resourcesIncluded?: Resource[] | null
[src]

The list of resources that are assessed to generate the evidence.

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

The timestamp that represents when the evidence was collected.