Class: Aws::GuardDuty::Types::UpdateFindingsFeedbackRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::UpdateFindingsFeedbackRequest
- Defined in:
- gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb
Overview
Note:
When making an API call, you may pass UpdateFindingsFeedbackRequest data as a hash:
{
detector_id: "DetectorId", # required
finding_ids: ["FindingId"], # required
feedback: "USEFUL", # required, accepts USEFUL, NOT_USEFUL
comments: "String",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comments ⇒ String
Additional feedback about the GuardDuty findings.
-
#detector_id ⇒ String
The ID of the detector associated with the findings to update feedback for.
-
#feedback ⇒ String
The feedback for the finding.
-
#finding_ids ⇒ Array<String>
The IDs of the findings that you want to mark as useful or not useful.
Instance Attribute Details
#comments ⇒ String
Additional feedback about the GuardDuty findings.
6453 6454 6455 6456 6457 6458 6459 6460 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 6453 class UpdateFindingsFeedbackRequest < Struct.new( :detector_id, :finding_ids, :feedback, :comments) SENSITIVE = [] include Aws::Structure end |
#detector_id ⇒ String
The ID of the detector associated with the findings to update feedback for.
6453 6454 6455 6456 6457 6458 6459 6460 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 6453 class UpdateFindingsFeedbackRequest < Struct.new( :detector_id, :finding_ids, :feedback, :comments) SENSITIVE = [] include Aws::Structure end |
#feedback ⇒ String
The feedback for the finding.
6453 6454 6455 6456 6457 6458 6459 6460 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 6453 class UpdateFindingsFeedbackRequest < Struct.new( :detector_id, :finding_ids, :feedback, :comments) SENSITIVE = [] include Aws::Structure end |
#finding_ids ⇒ Array<String>
The IDs of the findings that you want to mark as useful or not useful.
6453 6454 6455 6456 6457 6458 6459 6460 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 6453 class UpdateFindingsFeedbackRequest < Struct.new( :detector_id, :finding_ids, :feedback, :comments) SENSITIVE = [] include Aws::Structure end |