Class: Aws::LocationService::Types::SearchForSuggestionsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::LocationService::Types::SearchForSuggestionsResult
- Defined in:
- gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb
Overview
Contains a place suggestion resulting from a place suggestion query that is run on a place index resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#categories ⇒ Array<String>
The Amazon Location categories that describe the Place.
-
#place_id ⇒ String
The unique identifier of the Place.
-
#supplemental_categories ⇒ Array<String>
Categories from the data provider that describe the Place that are not mapped to any Amazon Location categories.
-
#text ⇒ String
The text of the place suggestion, typically formatted as an address string.
Instance Attribute Details
#categories ⇒ Array<String>
The Amazon Location categories that describe the Place.
For more information about using categories, including a list of Amazon Location categories, see Categories and filtering, in the Amazon Location Service developer guide.
5748 5749 5750 5751 5752 5753 5754 5755 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 5748 class SearchForSuggestionsResult < Struct.new( :text, :place_id, :categories, :supplemental_categories) SENSITIVE = [] include Aws::Structure end |
#place_id ⇒ String
The unique identifier of the Place. You can use this with the
GetPlace
operation to find the place again later, or to get full
information for the Place.
The GetPlace
request must use the same PlaceIndex
resource as
the SearchPlaceIndexForSuggestions
that generated the Place ID.
SearchPlaceIndexForSuggestions
operations, the PlaceId
is
returned by place indexes that use Esri, Grab, or HERE as data
providers.
5748 5749 5750 5751 5752 5753 5754 5755 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 5748 class SearchForSuggestionsResult < Struct.new( :text, :place_id, :categories, :supplemental_categories) SENSITIVE = [] include Aws::Structure end |
#supplemental_categories ⇒ Array<String>
Categories from the data provider that describe the Place that are not mapped to any Amazon Location categories.
5748 5749 5750 5751 5752 5753 5754 5755 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 5748 class SearchForSuggestionsResult < Struct.new( :text, :place_id, :categories, :supplemental_categories) SENSITIVE = [] include Aws::Structure end |
#text ⇒ String
The text of the place suggestion, typically formatted as an address string.
5748 5749 5750 5751 5752 5753 5754 5755 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 5748 class SearchForSuggestionsResult < Struct.new( :text, :place_id, :categories, :supplemental_categories) SENSITIVE = [] include Aws::Structure end |