Class: Aws::ConnectWisdomService::Types::QueryAssistantRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectWisdomService::Types::QueryAssistantRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-connectwisdomservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:query_text]
Instance Attribute Summary collapse
-
#assistant_id ⇒ String
The identifier of the Wisdom assistant.
-
#max_results ⇒ Integer
The maximum number of results to return per page.
-
#next_token ⇒ String
The token for the next set of results.
-
#query_text ⇒ String
The text to search for.
Instance Attribute Details
#assistant_id ⇒ String
The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
2375 2376 2377 2378 2379 2380 2381 2382 |
# File 'lib/aws-sdk-connectwisdomservice/types.rb', line 2375 class QueryAssistantRequest < Struct.new( :assistant_id, :max_results, :next_token, :query_text) SENSITIVE = [:query_text] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return per page.
2375 2376 2377 2378 2379 2380 2381 2382 |
# File 'lib/aws-sdk-connectwisdomservice/types.rb', line 2375 class QueryAssistantRequest < Struct.new( :assistant_id, :max_results, :next_token, :query_text) SENSITIVE = [:query_text] include Aws::Structure end |
#next_token ⇒ String
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
2375 2376 2377 2378 2379 2380 2381 2382 |
# File 'lib/aws-sdk-connectwisdomservice/types.rb', line 2375 class QueryAssistantRequest < Struct.new( :assistant_id, :max_results, :next_token, :query_text) SENSITIVE = [:query_text] include Aws::Structure end |
#query_text ⇒ String
The text to search for.
2375 2376 2377 2378 2379 2380 2381 2382 |
# File 'lib/aws-sdk-connectwisdomservice/types.rb', line 2375 class QueryAssistantRequest < Struct.new( :assistant_id, :max_results, :next_token, :query_text) SENSITIVE = [:query_text] include Aws::Structure end |