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

ChangeLog

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

The record of a change within Audit Manager. For example, this could be the status change of an assessment or the delegation of a control set.

interface ChangeLog {
action?: ActionEnum | null;
createdAt?: Date | number | null;
createdBy?: string | null;
objectName?: string | null;
objectType?: ObjectTypeEnum | null;
}

§Properties

§
action?: ActionEnum | null
[src]

The action that was performed.

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

The time when the action was performed and the changelog record was created.

§
createdBy?: string | null
[src]

The user or role that performed the action.

§
objectName?: string | null
[src]

The name of the object that changed. This could be the name of an assessment, control, or control set.

§
objectType?: ObjectTypeEnum | null
[src]

The object that was changed, such as an assessment, control, or control set.