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

ConfigurationRecorderStatus

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

The current status of the configuration recorder.

interface ConfigurationRecorderStatus {
lastErrorCode?: string | null;
lastErrorMessage?: string | null;
lastStartTime?: Date | number | null;
lastStatus?: RecorderStatus | null;
lastStatusChangeTime?: Date | number | null;
lastStopTime?: Date | number | null;
name?: string | null;
recording?: boolean | null;
}

§Properties

§
lastErrorCode?: string | null
[src]

The error code indicating that the recording failed.

§
lastErrorMessage?: string | null
[src]

The message indicating that the recording failed due to an error.

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

The time the recorder was last started.

§
lastStatus?: RecorderStatus | null
[src]

The last (previous) status of the recorder.

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

The time when the status was last changed.

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

The time the recorder was last stopped.

§
name?: string | null
[src]

The name of the configuration recorder.

§
recording?: boolean | null
[src]

Specifies whether or not the recorder is currently recording.