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

UpdateFindingsRequest

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

Updates findings with the new values provided in the request.

interface UpdateFindingsRequest {
analyzerArn: string;
clientToken?: string | null;
ids?: string[] | null;
resourceArn?: string | null;
}

§Properties

§
analyzerArn: string
[src]

The ARN of the analyzer that generated the findings to update.

§
clientToken?: string | null
[src]

A client token.

§
ids?: string[] | null
[src]

The IDs of the findings to update.

§
resourceArn?: string | null
[src]

The ARN of the resource identified in the finding.

§

The state represents the action to take to update the finding Status. Use ARCHIVE to change an Active finding to an Archived finding. Use ACTIVE to change an Archived finding to an Active finding.