Class: Aws::GeoPlaces::Types::SuggestQueryResult

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-geoplaces/types.rb

Overview

The suggested query results.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#query_idString

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

Returns:

  • (String)


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_typeString

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.

Returns:

  • (String)


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