ListFindings
Source:
src/AWS/Inspector2/ListFindings.ts
Runtime binding for inspector2:ListFindings.
Lists findings for your environment.
Provide the implementation with
Effect.provide(AWS.Inspector2.ListFindingsHttp).
Querying Findings
Section titled “Querying Findings”// initconst listFindings = yield* AWS.Inspector2.ListFindings();
// runtimeconst { findings } = yield* listFindings({ filterCriteria: { severity: [{ comparison: "EQUALS", value: "CRITICAL" }] },});