Class: Aws::Kendra::Types::ClickFeedback

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb

Overview

Gathers information about when a particular result was clicked by a user. Your application uses the SubmitFeedback API to provide click information.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#click_timeTime

The Unix timestamp when the result was clicked.

Returns:

  • (Time)


1188
1189
1190
1191
1192
1193
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 1188

class ClickFeedback < Struct.new(
  :result_id,
  :click_time)
  SENSITIVE = []
  include Aws::Structure
end

#result_idString

The identifier of the search result that was clicked.

Returns:

  • (String)


1188
1189
1190
1191
1192
1193
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 1188

class ClickFeedback < Struct.new(
  :result_id,
  :click_time)
  SENSITIVE = []
  include Aws::Structure
end