Values.UpdateFindingsRequestSourceUpdates findings with the new values provided in the request.
type nonrec t = {analyzerArn : AnalyzerArn.t;The ARN of the analyzer that generated the findings to update.
*)status : FindingStatusUpdate.t;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.
*)ids : FindingIdList.t option;The IDs of the findings to update.
*)resourceArn : ResourceArn.t option;The ARN of the resource identified in the finding.
*)clientToken : String_.t option;A client token.
*)}val make :
?ids:??? ->
?resourceArn:??? ->
?clientToken:??? ->
analyzerArn:AnalyzerArn.t ->
status:FindingStatusUpdate.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `List of [> `String of FindingId.t ] list
| `String of AnalyzerArn.t ])
list ]