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

ListAuditTasksRequest

import type { ListAuditTasksRequest } from "https://aws-api.deno.dev/v0.3/services/iot.ts?docs=full";
interface ListAuditTasksRequest {
endTime: Date | number;
maxResults?: number | null;
nextToken?: string | null;
startTime: Date | number;
taskStatus?: AuditTaskStatus | null;
taskType?: AuditTaskType | null;
}

§Properties

§
endTime: Date | number
[src]

The end of the time period.

§
maxResults?: number | null
[src]

The maximum number of results to return at one time. The default is 25.

§
nextToken?: string | null
[src]

The token for the next set of results.

§
startTime: Date | number
[src]

The beginning of the time period. Audit information is retained for a limited time (90 days). Requesting a start time prior to what is retained results in an "InvalidRequestException".

§
taskStatus?: AuditTaskStatus | null
[src]

A filter to limit the output to audits with the specified completion status: can be one of "IN_PROGRESS", "COMPLETED", "FAILED", or "CANCELED".

§
taskType?: AuditTaskType | null
[src]

A filter to limit the output to the specified type of audit: can be one of "ON_DEMAND_AUDIT_TASK" or "SCHEDULED__AUDIT_TASK".