Class: Aws::SecurityIR::Types::InvestigationFeedback

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#commentString

Optional user comments providing additional context about the investigation feedback. This allows users to explain their rating or provide suggestions for improvement.

Returns:

  • (String)


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_atTime

ISO 8601 timestamp when the feedback was submitted. This records when the user provided their assessment of the investigation results.

Returns:

  • (Time)


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

#usefulnessString

User assessment of the investigation result’s quality and helpfulness. This rating indicates how valuable the investigation findings were in addressing the case.

Returns:

  • (String)


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