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.
5620 5621 5622 5623 5624 5625 5626 5627 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 5620 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.
5620 5621 5622 5623 5624 5625 5626 5627 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 5620 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.
5620 5621 5622 5623 5624 5625 5626 5627 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 5620 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.
5620 5621 5622 5623 5624 5625 5626 5627 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 5620 class SearchForSuggestionsResult < Struct.new( :text, :place_id, :categories, :supplemental_categories) SENSITIVE = [] include Aws::Structure end |