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

Framework

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

The file that's used to structure and automate Audit Manager assessments for a given compliance standard.

interface Framework {
arn?: string | null;
complianceType?: string | null;
controlSets?: ControlSet[] | null;
controlSources?: string | null;
createdAt?: Date | number | null;
createdBy?: string | null;
description?: string | null;
id?: string | null;
lastUpdatedAt?: Date | number | null;
lastUpdatedBy?: string | null;
logo?: string | null;
name?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
type?: FrameworkType | null;
}

§Properties

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) of the framework.

§
complianceType?: string | null
[src]

The compliance type that the new custom framework supports, such as CIS or HIPAA.

§
controlSets?: ControlSet[] | null
[src]

The control sets that are associated with the framework.

§
controlSources?: string | null
[src]

The sources that Audit Manager collects evidence from for the control.

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

The time when the framework was created.

§
createdBy?: string | null
[src]

The user or role that created the framework.

§
description?: string | null
[src]

The description of the framework.

§
id?: string | null
[src]

The unique identifier for the framework.

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

The time when the framework was most recently updated.

§
lastUpdatedBy?: string | null
[src]

The user or role that most recently updated the framework.

§
name?: string | null
[src]

The name of the framework.

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

The tags that are associated with the framework.

§
type?: FrameworkType | null
[src]

The framework type, such as a custom framework or a standard framework.