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

DescribeAuditTaskResponse

import type { DescribeAuditTaskResponse } from "https://aws-api.deno.dev/v0.3/services/iot.ts?docs=full";
interface DescribeAuditTaskResponse {
auditDetails?: {
[key: string]: AuditCheckDetails | null | undefined;
}
| null;
scheduledAuditName?: string | null;
taskStartTime?: Date | number | null;
taskStatistics?: TaskStatistics | null;
taskStatus?: AuditTaskStatus | null;
taskType?: AuditTaskType | null;
}

§Properties

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

Detailed information about each check performed during this audit.

§
scheduledAuditName?: string | null
[src]

The name of the scheduled audit (only if the audit was a scheduled audit).

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

The time the audit started.

§
taskStatistics?: TaskStatistics | null
[src]

Statistical information about the audit.

§
taskStatus?: AuditTaskStatus | null
[src]

The status of the audit: one of "IN_PROGRESS", "COMPLETED", "FAILED", or "CANCELED".

§
taskType?: AuditTaskType | null
[src]

The type of audit: "ON_DEMAND_AUDIT_TASK" or "SCHEDULED_AUDIT_TASK".