Class: Aws::Kendra::Types::ClickFeedback
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::ClickFeedback
- Includes:
- Structure
- Defined in:
- 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
-
#click_time ⇒ Time
The Unix timestamp when the result was clicked.
-
#result_id ⇒ String
The identifier of the search result that was clicked.
Instance Attribute Details
#click_time ⇒ Time
The Unix timestamp when the result was clicked.
1188 1189 1190 1191 1192 1193 |
# File 'lib/aws-sdk-kendra/types.rb', line 1188 class ClickFeedback < Struct.new( :result_id, :click_time) SENSITIVE = [] include Aws::Structure end |
#result_id ⇒ String
The identifier of the search result that was clicked.
1188 1189 1190 1191 1192 1193 |
# File 'lib/aws-sdk-kendra/types.rb', line 1188 class ClickFeedback < Struct.new( :result_id, :click_time) SENSITIVE = [] include Aws::Structure end |