Module Values.UpdateFindingsFeedbackRequestSource

Marks the specified GuardDuty findings as useful or not useful.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. findingIds : FindingIds.t;
    (*

    The IDs of the findings that you want to mark as useful or not useful.

    *)
  3. feedback : Feedback.t;
    (*

    The feedback for the finding.

    *)
  4. comments : SensitiveString.t option;
    (*

    Additional feedback about the GuardDuty findings.

    *)
}
Sourceval context_ : string
Sourceval make : ?comments:??? -> detectorId:DetectorId.t -> findingIds:FindingIds.t -> feedback:Feedback.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of FindingId.t ] list | `String of DetectorId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t