Class: Aws::SecurityIR::Types::InvestigationFeedback
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityIR::Types::InvestigationFeedback
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityir/types.rb
Overview
Represents user feedback for an investigation result. This structure captures the user’s evaluation of the investigation’s quality, usefulness, and any additional comments.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comment ⇒ String
Optional user comments providing additional context about the investigation feedback.
-
#submitted_at ⇒ Time
ISO 8601 timestamp when the feedback was submitted.
-
#usefulness ⇒ String
User assessment of the investigation result’s quality and helpfulness.
Instance Attribute Details
#comment ⇒ String
Optional user comments providing additional context about the investigation feedback. This allows users to explain their rating or provide suggestions for improvement.
971 972 973 974 975 976 977 |
# File 'lib/aws-sdk-securityir/types.rb', line 971 class InvestigationFeedback < Struct.new( :usefulness, :comment, :submitted_at) SENSITIVE = [] include Aws::Structure end |
#submitted_at ⇒ Time
ISO 8601 timestamp when the feedback was submitted. This records when the user provided their assessment of the investigation results.
971 972 973 974 975 976 977 |
# File 'lib/aws-sdk-securityir/types.rb', line 971 class InvestigationFeedback < Struct.new( :usefulness, :comment, :submitted_at) SENSITIVE = [] include Aws::Structure end |
#usefulness ⇒ String
User assessment of the investigation result’s quality and helpfulness. This rating indicates how valuable the investigation findings were in addressing the case.
971 972 973 974 975 976 977 |
# File 'lib/aws-sdk-securityir/types.rb', line 971 class InvestigationFeedback < Struct.new( :usefulness, :comment, :submitted_at) SENSITIVE = [] include Aws::Structure end |