Values.UpdateFindingsFeedbackRequestSourceMarks the specified GuardDuty findings as useful or not useful.
type nonrec t = {detectorId : DetectorId.t;The ID of the detector that is associated with the findings for which you want to update the feedback. To find the detectorId in the current Region, see the Settings page in the GuardDuty console, or run the ListDetectors API.
*)findingIds : FindingIds.t;The IDs of the findings that you want to mark as useful or not useful.
*)feedback : Feedback.t;The feedback for the finding.
*)comments : SensitiveString.t option;Additional feedback about the GuardDuty findings.
*)}val make :
?comments:??? ->
detectorId:DetectorId.t ->
findingIds:FindingIds.t ->
feedback:Feedback.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `List of [> `String of FindingId.t ] list
| `String of DetectorId.t ])
list ]