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

ListAuditFindingsRequest

import type { ListAuditFindingsRequest } from "https://aws-api.deno.dev/v0.3/services/iot.ts?docs=full";
interface ListAuditFindingsRequest {
checkName?: string | null;
endTime?: Date | number | null;
listSuppressedFindings?: boolean | null;
maxResults?: number | null;
nextToken?: string | null;
resourceIdentifier?: ResourceIdentifier | null;
startTime?: Date | number | null;
taskId?: string | null;
}

§Properties

§
checkName?: string | null
[src]

A filter to limit results to the findings for the specified audit check.

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

A filter to limit results to those found before the specified time. You must specify either the startTime and endTime or the taskId, but not both.

§
listSuppressedFindings?: boolean | null
[src]

Boolean flag indicating whether only the suppressed findings or the unsuppressed findings should be listed. If this parameter isn't provided, the response will list both suppressed and unsuppressed findings.

§
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.

§
resourceIdentifier?: ResourceIdentifier | null
[src]

Information identifying the noncompliant resource.

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

A filter to limit results to those found after the specified time. You must specify either the startTime and endTime or the taskId, but not both.

§
taskId?: string | null
[src]

A filter to limit results to the audit with the specified ID. You must specify either the taskId or the startTime and endTime, but not both.