Class: Aws::GeoPlaces::Types::SuggestQueryResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoPlaces::Types::SuggestQueryResult
- Defined in:
- gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb
Overview
The suggested query results.
Constant Summary collapse
- SENSITIVE =
[:query_id]
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. Not supported in ap-southeast-1 and ap-southeast-5
regions for GrabMaps customers.
QueryText, and QueryID are mutually exclusive.
3410 3411 3412 3413 3414 3415 |
# File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 3410 class SuggestQueryResult < Struct.new( :query_id, :query_type) SENSITIVE = [:query_id] include Aws::Structure end |
#query_type ⇒ String
The query type. Category queries 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.
Not supported in ap-southeast-1 and ap-southeast-5 regions for
GrabMaps customers.
3410 3411 3412 3413 3414 3415 |
# File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 3410 class SuggestQueryResult < Struct.new( :query_id, :query_type) SENSITIVE = [:query_id] include Aws::Structure end |