Class: Aws::Kendra::Types::ClickFeedback
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::ClickFeedback
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
Note:
When making an API call, you may pass ClickFeedback data as a hash:
{
result_id: "ResultId", # required
click_time: Time.now, # required
}
Gathers information about when a particular result was clicked by a user. Your application uses the SubmitFeedback operation to provide click information.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#click_time ⇒ Time
The Unix timestamp of the date and time that the result was clicked.
-
#result_id ⇒ String
The unique identifier of the search result that was clicked.
Instance Attribute Details
#click_time ⇒ Time
The Unix timestamp of the date and time that the result was clicked.
753 754 755 756 757 758 |
# File 'lib/aws-sdk-kendra/types.rb', line 753 class ClickFeedback < Struct.new( :result_id, :click_time) SENSITIVE = [] include Aws::Structure end |
#result_id ⇒ String
The unique identifier of the search result that was clicked.
753 754 755 756 757 758 |
# File 'lib/aws-sdk-kendra/types.rb', line 753 class ClickFeedback < Struct.new( :result_id, :click_time) SENSITIVE = [] include Aws::Structure end |