Class: Aws::GeoPlaces::Types::SuggestQueryResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoPlaces::Types::SuggestQueryResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-geoplaces/types.rb
Overview
The suggested query results.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#query_id ⇒ String
QueryId can be used to complete a follow up query through the SearchText API.
-
#query_type ⇒ String
The query type.
Instance Attribute Details
#query_id ⇒ String
QueryId can be used to complete a follow up query through the SearchText API. The QueryId retains context from the original Suggest request such as filters, political view and language. See the SearchText API documentation for more details [SearchText API docs].
[1]: docs.aws.amazon.com/latest/APIReference/API_geoplaces_SearchText.html
2603 2604 2605 2606 2607 2608 |
# File 'lib/aws-sdk-geoplaces/types.rb', line 2603 class SuggestQueryResult < Struct.new( :query_id, :query_type) SENSITIVE = [] include Aws::Structure end |
#query_type ⇒ String
The query type. Category qeuries will search for places which have an entry matching the given category, for example “doctor office”. BusinessChain queries will search for instances of a given business.
2603 2604 2605 2606 2607 2608 |
# File 'lib/aws-sdk-geoplaces/types.rb', line 2603 class SuggestQueryResult < Struct.new( :query_id, :query_type) SENSITIVE = [] include Aws::Structure end |