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

ListFindingsRequest

import type { ListFindingsRequest } from "https://aws-api.deno.dev/v0.3/services/accessanalyzer.ts?docs=full";

Retrieves a list of findings generated by the specified analyzer.

interface ListFindingsRequest {
analyzerArn: string;
filter?: {
[key: string]: Criterion | null | undefined;
}
| null;
maxResults?: number | null;
nextToken?: string | null;
sort?: SortCriteria | null;
}

§Properties

§
analyzerArn: string
[src]

The ARN of the analyzer to retrieve findings from.

§
filter?: {
[key: string]: Criterion | null | undefined;
}
| null
[src]

A filter to match for the findings to return.

§
maxResults?: number | null
[src]

The maximum number of results to return in the response.

§
nextToken?: string | null
[src]

A token used for pagination of results returned.

§
sort?: SortCriteria | null
[src]

The sort order for the findings returned.