Class: Aws::Kendra::Types::ClickFeedback
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::ClickFeedback
- 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
-
#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.
1207 1208 1209 1210 1211 1212 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 1207 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.
1207 1208 1209 1210 1211 1212 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 1207 class ClickFeedback < Struct.new( :result_id, :click_time) SENSITIVE = [] include Aws::Structure end |