You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::GuardDuty::Types::UpdateFindingsFeedbackRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateFindingsFeedbackRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  detector_id: "DetectorId", # required
  finding_ids: ["FindingId"], # required
  feedback: "USEFUL", # required, accepts USEFUL, NOT_USEFUL
  comments: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#commentsString

Additional feedback about the GuardDuty findings.

Returns:

  • (String)

    Additional feedback about the GuardDuty findings.

#detector_idString

The ID of the detector associated with the findings to update feedback for.

Returns:

  • (String)

    The ID of the detector associated with the findings to update feedback for.

#feedbackString

The feedback for the finding.

Possible values:

  • USEFUL
  • NOT_USEFUL

Returns:

  • (String)

    The feedback for the finding.

#finding_idsArray<String>

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

Returns:

  • (Array<String>)

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