aws-sdk-locationservice 1.32.0 → 1.34.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-locationservice/client.rb +69 -5
- data/lib/aws-sdk-locationservice/client_api.rb +23 -0
- data/lib/aws-sdk-locationservice/endpoints.rb +1 -0
- data/lib/aws-sdk-locationservice/types.rb +121 -10
- data/lib/aws-sdk-locationservice.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 21e6a51a020f646da2af7c0d514d458bd30fbe297d994dcaf1ced3a495cbc47e
|
4
|
+
data.tar.gz: 82dd05b302b2d4b404ce231c1828c4eb9ba4358e62d04cc43777ea9bfbcfc4e3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 85f05e526ed409dc2d56d6e47b80329b5824d28f7b81f5e95420abc8a90fb8de412f7f25ed26d710b44df72e450311bd454074411e862be3935e555042149130
|
7
|
+
data.tar.gz: e303bc937efe4358074b3e2dca6c8727c711674d0afa91522009de29c3fc95f2e672acc05f1f357c6354a8e5c87b433581d7ab6164db7e6514523f3a81540fb9
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.34.0 (2023-06-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.33.0 (2023-06-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Amazon Location Service adds categories to places, including filtering on those categories in searches. Also, you can now add metadata properties to your geofences.
|
13
|
+
|
4
14
|
1.32.0 (2023-05-31)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.34.0
|
@@ -647,6 +647,9 @@ module Aws::LocationService
|
|
647
647
|
# entries: [ # required
|
648
648
|
# {
|
649
649
|
# geofence_id: "Id", # required
|
650
|
+
# geofence_properties: {
|
651
|
+
# "PropertyMapKeyString" => "PropertyMapValueString",
|
652
|
+
# },
|
650
653
|
# geometry: { # required
|
651
654
|
# circle: {
|
652
655
|
# center: [1.0], # required
|
@@ -683,9 +686,9 @@ module Aws::LocationService
|
|
683
686
|
end
|
684
687
|
|
685
688
|
# Uploads position update data for one or more devices to a tracker
|
686
|
-
# resource. Amazon Location uses the data
|
687
|
-
# device position and position history.
|
688
|
-
# data for 30 days.
|
689
|
+
# resource (up to 10 devices per batch). Amazon Location uses the data
|
690
|
+
# when it reports the last known device position and position history.
|
691
|
+
# Amazon Location retains location data for 30 days.
|
689
692
|
#
|
690
693
|
# <note markdown="1"> Position updates are handled based on the `PositionFiltering` property
|
691
694
|
# of the tracker. When `PositionFiltering` is set to `TimeBased`,
|
@@ -715,7 +718,8 @@ module Aws::LocationService
|
|
715
718
|
# The name of the tracker resource to update.
|
716
719
|
#
|
717
720
|
# @option params [required, Array<Types::DevicePositionUpdate>] :updates
|
718
|
-
# Contains the position update details for each device
|
721
|
+
# Contains the position update details for each device, up to 10
|
722
|
+
# devices.
|
719
723
|
#
|
720
724
|
# @return [Types::BatchUpdateDevicePositionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
721
725
|
#
|
@@ -2600,6 +2604,7 @@ module Aws::LocationService
|
|
2600
2604
|
#
|
2601
2605
|
# * {Types::GetGeofenceResponse#create_time #create_time} => Time
|
2602
2606
|
# * {Types::GetGeofenceResponse#geofence_id #geofence_id} => String
|
2607
|
+
# * {Types::GetGeofenceResponse#geofence_properties #geofence_properties} => Hash<String,String>
|
2603
2608
|
# * {Types::GetGeofenceResponse#geometry #geometry} => Types::GeofenceGeometry
|
2604
2609
|
# * {Types::GetGeofenceResponse#status #status} => String
|
2605
2610
|
# * {Types::GetGeofenceResponse#update_time #update_time} => Time
|
@@ -2615,6 +2620,8 @@ module Aws::LocationService
|
|
2615
2620
|
#
|
2616
2621
|
# resp.create_time #=> Time
|
2617
2622
|
# resp.geofence_id #=> String
|
2623
|
+
# resp.geofence_properties #=> Hash
|
2624
|
+
# resp.geofence_properties["PropertyMapKeyString"] #=> String
|
2618
2625
|
# resp.geometry.circle.center #=> Array
|
2619
2626
|
# resp.geometry.circle.center[0] #=> Float
|
2620
2627
|
# resp.geometry.circle.radius #=> Float
|
@@ -2974,6 +2981,8 @@ module Aws::LocationService
|
|
2974
2981
|
# @example Response structure
|
2975
2982
|
#
|
2976
2983
|
# resp.place.address_number #=> String
|
2984
|
+
# resp.place.categories #=> Array
|
2985
|
+
# resp.place.categories[0] #=> String
|
2977
2986
|
# resp.place.country #=> String
|
2978
2987
|
# resp.place.geometry.point #=> Array
|
2979
2988
|
# resp.place.geometry.point[0] #=> Float
|
@@ -2985,6 +2994,8 @@ module Aws::LocationService
|
|
2985
2994
|
# resp.place.region #=> String
|
2986
2995
|
# resp.place.street #=> String
|
2987
2996
|
# resp.place.sub_region #=> String
|
2997
|
+
# resp.place.supplemental_categories #=> Array
|
2998
|
+
# resp.place.supplemental_categories[0] #=> String
|
2988
2999
|
# resp.place.time_zone.name #=> String
|
2989
3000
|
# resp.place.time_zone.offset #=> Integer
|
2990
3001
|
# resp.place.unit_number #=> String
|
@@ -3136,6 +3147,8 @@ module Aws::LocationService
|
|
3136
3147
|
# resp.data.entries #=> Array
|
3137
3148
|
# resp.data.entries[0].create_time #=> Time
|
3138
3149
|
# resp.data.entries[0].geofence_id #=> String
|
3150
|
+
# resp.data.entries[0].geofence_properties #=> Hash
|
3151
|
+
# resp.data.entries[0].geofence_properties["PropertyMapKeyString"] #=> String
|
3139
3152
|
# resp.data.entries[0].geometry.circle.center #=> Array
|
3140
3153
|
# resp.data.entries[0].geometry.circle.center[0] #=> Float
|
3141
3154
|
# resp.data.entries[0].geometry.circle.radius #=> Float
|
@@ -3509,6 +3522,10 @@ module Aws::LocationService
|
|
3509
3522
|
# @option params [required, String] :geofence_id
|
3510
3523
|
# An identifier for the geofence. For example, `ExampleGeofence-1`.
|
3511
3524
|
#
|
3525
|
+
# @option params [Hash<String,String>] :geofence_properties
|
3526
|
+
# Specifies additional user-defined properties to store with the
|
3527
|
+
# Geofence. An array of key-value pairs.
|
3528
|
+
#
|
3512
3529
|
# @option params [required, Types::GeofenceGeometry] :geometry
|
3513
3530
|
# Contains the details to specify the position of the geofence. Can be
|
3514
3531
|
# either a polygon or a circle. Including both will return a validation
|
@@ -3533,6 +3550,9 @@ module Aws::LocationService
|
|
3533
3550
|
# resp = client.put_geofence({
|
3534
3551
|
# collection_name: "ResourceName", # required
|
3535
3552
|
# geofence_id: "Id", # required
|
3553
|
+
# geofence_properties: {
|
3554
|
+
# "PropertyMapKeyString" => "PropertyMapValueString",
|
3555
|
+
# },
|
3536
3556
|
# geometry: { # required
|
3537
3557
|
# circle: {
|
3538
3558
|
# center: [1.0], # required
|
@@ -3627,6 +3647,8 @@ module Aws::LocationService
|
|
3627
3647
|
# resp.results #=> Array
|
3628
3648
|
# resp.results[0].distance #=> Float
|
3629
3649
|
# resp.results[0].place.address_number #=> String
|
3650
|
+
# resp.results[0].place.categories #=> Array
|
3651
|
+
# resp.results[0].place.categories[0] #=> String
|
3630
3652
|
# resp.results[0].place.country #=> String
|
3631
3653
|
# resp.results[0].place.geometry.point #=> Array
|
3632
3654
|
# resp.results[0].place.geometry.point[0] #=> Float
|
@@ -3638,6 +3660,8 @@ module Aws::LocationService
|
|
3638
3660
|
# resp.results[0].place.region #=> String
|
3639
3661
|
# resp.results[0].place.street #=> String
|
3640
3662
|
# resp.results[0].place.sub_region #=> String
|
3663
|
+
# resp.results[0].place.supplemental_categories #=> Array
|
3664
|
+
# resp.results[0].place.supplemental_categories[0] #=> String
|
3641
3665
|
# resp.results[0].place.time_zone.name #=> String
|
3642
3666
|
# resp.results[0].place.time_zone.offset #=> Integer
|
3643
3667
|
# resp.results[0].place.unit_number #=> String
|
@@ -3710,6 +3734,19 @@ module Aws::LocationService
|
|
3710
3734
|
#
|
3711
3735
|
# </note>
|
3712
3736
|
#
|
3737
|
+
# @option params [Array<String>] :filter_categories
|
3738
|
+
# A list of one or more Amazon Location categories to filter the
|
3739
|
+
# returned places. If you include more than one category, the results
|
3740
|
+
# will include results that match *any* of the categories listed.
|
3741
|
+
#
|
3742
|
+
# For more information about using categories, including a list of
|
3743
|
+
# Amazon Location categories, see [Categories and filtering][1], in the
|
3744
|
+
# *Amazon Location Service Developer Guide*.
|
3745
|
+
#
|
3746
|
+
#
|
3747
|
+
#
|
3748
|
+
# [1]: https://docs.aws.amazon.com/location/latest/developerguide/category-filtering.html
|
3749
|
+
#
|
3713
3750
|
# @option params [Array<String>] :filter_countries
|
3714
3751
|
# An optional parameter that limits the search results by returning only
|
3715
3752
|
# suggestions within the provided list of countries.
|
@@ -3768,6 +3805,7 @@ module Aws::LocationService
|
|
3768
3805
|
# resp = client.search_place_index_for_suggestions({
|
3769
3806
|
# bias_position: [1.0],
|
3770
3807
|
# filter_b_box: [1.0],
|
3808
|
+
# filter_categories: ["PlaceCategory"],
|
3771
3809
|
# filter_countries: ["CountryCode"],
|
3772
3810
|
# index_name: "ResourceName", # required
|
3773
3811
|
# language: "LanguageTag",
|
@@ -3778,13 +3816,19 @@ module Aws::LocationService
|
|
3778
3816
|
# @example Response structure
|
3779
3817
|
#
|
3780
3818
|
# resp.results #=> Array
|
3819
|
+
# resp.results[0].categories #=> Array
|
3820
|
+
# resp.results[0].categories[0] #=> String
|
3781
3821
|
# resp.results[0].place_id #=> String
|
3822
|
+
# resp.results[0].supplemental_categories #=> Array
|
3823
|
+
# resp.results[0].supplemental_categories[0] #=> String
|
3782
3824
|
# resp.results[0].text #=> String
|
3783
3825
|
# resp.summary.bias_position #=> Array
|
3784
3826
|
# resp.summary.bias_position[0] #=> Float
|
3785
3827
|
# resp.summary.data_source #=> String
|
3786
3828
|
# resp.summary.filter_b_box #=> Array
|
3787
3829
|
# resp.summary.filter_b_box[0] #=> Float
|
3830
|
+
# resp.summary.filter_categories #=> Array
|
3831
|
+
# resp.summary.filter_categories[0] #=> String
|
3788
3832
|
# resp.summary.filter_countries #=> Array
|
3789
3833
|
# resp.summary.filter_countries[0] #=> String
|
3790
3834
|
# resp.summary.language #=> String
|
@@ -3852,6 +3896,19 @@ module Aws::LocationService
|
|
3852
3896
|
#
|
3853
3897
|
# </note>
|
3854
3898
|
#
|
3899
|
+
# @option params [Array<String>] :filter_categories
|
3900
|
+
# A list of one or more Amazon Location categories to filter the
|
3901
|
+
# returned places. If you include more than one category, the results
|
3902
|
+
# will include results that match *any* of the categories listed.
|
3903
|
+
#
|
3904
|
+
# For more information about using categories, including a list of
|
3905
|
+
# Amazon Location categories, see [Categories and filtering][1], in the
|
3906
|
+
# *Amazon Location Service Developer Guide*.
|
3907
|
+
#
|
3908
|
+
#
|
3909
|
+
#
|
3910
|
+
# [1]: https://docs.aws.amazon.com/location/latest/developerguide/category-filtering.html
|
3911
|
+
#
|
3855
3912
|
# @option params [Array<String>] :filter_countries
|
3856
3913
|
# An optional parameter that limits the search results by returning only
|
3857
3914
|
# places that are in a specified list of countries.
|
@@ -3911,6 +3968,7 @@ module Aws::LocationService
|
|
3911
3968
|
# resp = client.search_place_index_for_text({
|
3912
3969
|
# bias_position: [1.0],
|
3913
3970
|
# filter_b_box: [1.0],
|
3971
|
+
# filter_categories: ["PlaceCategory"],
|
3914
3972
|
# filter_countries: ["CountryCode"],
|
3915
3973
|
# index_name: "ResourceName", # required
|
3916
3974
|
# language: "LanguageTag",
|
@@ -3923,6 +3981,8 @@ module Aws::LocationService
|
|
3923
3981
|
# resp.results #=> Array
|
3924
3982
|
# resp.results[0].distance #=> Float
|
3925
3983
|
# resp.results[0].place.address_number #=> String
|
3984
|
+
# resp.results[0].place.categories #=> Array
|
3985
|
+
# resp.results[0].place.categories[0] #=> String
|
3926
3986
|
# resp.results[0].place.country #=> String
|
3927
3987
|
# resp.results[0].place.geometry.point #=> Array
|
3928
3988
|
# resp.results[0].place.geometry.point[0] #=> Float
|
@@ -3934,6 +3994,8 @@ module Aws::LocationService
|
|
3934
3994
|
# resp.results[0].place.region #=> String
|
3935
3995
|
# resp.results[0].place.street #=> String
|
3936
3996
|
# resp.results[0].place.sub_region #=> String
|
3997
|
+
# resp.results[0].place.supplemental_categories #=> Array
|
3998
|
+
# resp.results[0].place.supplemental_categories[0] #=> String
|
3937
3999
|
# resp.results[0].place.time_zone.name #=> String
|
3938
4000
|
# resp.results[0].place.time_zone.offset #=> Integer
|
3939
4001
|
# resp.results[0].place.unit_number #=> String
|
@@ -3945,6 +4007,8 @@ module Aws::LocationService
|
|
3945
4007
|
# resp.summary.data_source #=> String
|
3946
4008
|
# resp.summary.filter_b_box #=> Array
|
3947
4009
|
# resp.summary.filter_b_box[0] #=> Float
|
4010
|
+
# resp.summary.filter_categories #=> Array
|
4011
|
+
# resp.summary.filter_categories[0] #=> String
|
3948
4012
|
# resp.summary.filter_countries #=> Array
|
3949
4013
|
# resp.summary.filter_countries[0] #=> String
|
3950
4014
|
# resp.summary.language #=> String
|
@@ -4409,7 +4473,7 @@ module Aws::LocationService
|
|
4409
4473
|
params: params,
|
4410
4474
|
config: config)
|
4411
4475
|
context[:gem_name] = 'aws-sdk-locationservice'
|
4412
|
-
context[:gem_version] = '1.
|
4476
|
+
context[:gem_version] = '1.34.0'
|
4413
4477
|
Seahorse::Client::Request.new(handlers, context)
|
4414
4478
|
end
|
4415
4479
|
|
@@ -132,6 +132,7 @@ module Aws::LocationService
|
|
132
132
|
DisassociateTrackerConsumerResponse = Shapes::StructureShape.new(name: 'DisassociateTrackerConsumerResponse')
|
133
133
|
DistanceUnit = Shapes::StringShape.new(name: 'DistanceUnit')
|
134
134
|
Double = Shapes::FloatShape.new(name: 'Double')
|
135
|
+
FilterPlaceCategoryList = Shapes::ListShape.new(name: 'FilterPlaceCategoryList')
|
135
136
|
GeoArn = Shapes::StringShape.new(name: 'GeoArn')
|
136
137
|
GeofenceGeometry = Shapes::StructureShape.new(name: 'GeofenceGeometry')
|
137
138
|
GetDevicePositionHistoryRequest = Shapes::StructureShape.new(name: 'GetDevicePositionHistoryRequest')
|
@@ -219,9 +220,13 @@ module Aws::LocationService
|
|
219
220
|
MapConfigurationUpdate = Shapes::StructureShape.new(name: 'MapConfigurationUpdate')
|
220
221
|
MapStyle = Shapes::StringShape.new(name: 'MapStyle')
|
221
222
|
Place = Shapes::StructureShape.new(name: 'Place')
|
223
|
+
PlaceCategory = Shapes::StringShape.new(name: 'PlaceCategory')
|
224
|
+
PlaceCategoryList = Shapes::ListShape.new(name: 'PlaceCategoryList')
|
222
225
|
PlaceGeometry = Shapes::StructureShape.new(name: 'PlaceGeometry')
|
223
226
|
PlaceId = Shapes::StringShape.new(name: 'PlaceId')
|
224
227
|
PlaceIndexSearchResultLimit = Shapes::IntegerShape.new(name: 'PlaceIndexSearchResultLimit')
|
228
|
+
PlaceSupplementalCategory = Shapes::StringShape.new(name: 'PlaceSupplementalCategory')
|
229
|
+
PlaceSupplementalCategoryList = Shapes::ListShape.new(name: 'PlaceSupplementalCategoryList')
|
225
230
|
Position = Shapes::ListShape.new(name: 'Position')
|
226
231
|
PositionFiltering = Shapes::StringShape.new(name: 'PositionFiltering')
|
227
232
|
PositionalAccuracy = Shapes::StructureShape.new(name: 'PositionalAccuracy')
|
@@ -414,6 +419,7 @@ module Aws::LocationService
|
|
414
419
|
BatchPutGeofenceRequestEntriesList.member = Shapes::ShapeRef.new(shape: BatchPutGeofenceRequestEntry)
|
415
420
|
|
416
421
|
BatchPutGeofenceRequestEntry.add_member(:geofence_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "GeofenceId"))
|
422
|
+
BatchPutGeofenceRequestEntry.add_member(:geofence_properties, Shapes::ShapeRef.new(shape: PropertyMap, location_name: "GeofenceProperties"))
|
417
423
|
BatchPutGeofenceRequestEntry.add_member(:geometry, Shapes::ShapeRef.new(shape: GeofenceGeometry, required: true, location_name: "Geometry"))
|
418
424
|
BatchPutGeofenceRequestEntry.struct_class = Types::BatchPutGeofenceRequestEntry
|
419
425
|
|
@@ -740,6 +746,8 @@ module Aws::LocationService
|
|
740
746
|
|
741
747
|
DisassociateTrackerConsumerResponse.struct_class = Types::DisassociateTrackerConsumerResponse
|
742
748
|
|
749
|
+
FilterPlaceCategoryList.member = Shapes::ShapeRef.new(shape: PlaceCategory)
|
750
|
+
|
743
751
|
GeofenceGeometry.add_member(:circle, Shapes::ShapeRef.new(shape: Circle, location_name: "Circle"))
|
744
752
|
GeofenceGeometry.add_member(:polygon, Shapes::ShapeRef.new(shape: LinearRings, location_name: "Polygon"))
|
745
753
|
GeofenceGeometry.struct_class = Types::GeofenceGeometry
|
@@ -774,6 +782,7 @@ module Aws::LocationService
|
|
774
782
|
|
775
783
|
GetGeofenceResponse.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreateTime"))
|
776
784
|
GetGeofenceResponse.add_member(:geofence_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "GeofenceId"))
|
785
|
+
GetGeofenceResponse.add_member(:geofence_properties, Shapes::ShapeRef.new(shape: PropertyMap, location_name: "GeofenceProperties"))
|
777
786
|
GetGeofenceResponse.add_member(:geometry, Shapes::ShapeRef.new(shape: GeofenceGeometry, required: true, location_name: "Geometry"))
|
778
787
|
GetGeofenceResponse.add_member(:status, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Status"))
|
779
788
|
GetGeofenceResponse.add_member(:update_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "UpdateTime"))
|
@@ -897,6 +906,7 @@ module Aws::LocationService
|
|
897
906
|
|
898
907
|
ListGeofenceResponseEntry.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreateTime"))
|
899
908
|
ListGeofenceResponseEntry.add_member(:geofence_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "GeofenceId"))
|
909
|
+
ListGeofenceResponseEntry.add_member(:geofence_properties, Shapes::ShapeRef.new(shape: PropertyMap, location_name: "GeofenceProperties"))
|
900
910
|
ListGeofenceResponseEntry.add_member(:geometry, Shapes::ShapeRef.new(shape: GeofenceGeometry, required: true, location_name: "Geometry"))
|
901
911
|
ListGeofenceResponseEntry.add_member(:status, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Status"))
|
902
912
|
ListGeofenceResponseEntry.add_member(:update_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "UpdateTime"))
|
@@ -1027,6 +1037,7 @@ module Aws::LocationService
|
|
1027
1037
|
MapConfigurationUpdate.struct_class = Types::MapConfigurationUpdate
|
1028
1038
|
|
1029
1039
|
Place.add_member(:address_number, Shapes::ShapeRef.new(shape: String, location_name: "AddressNumber"))
|
1040
|
+
Place.add_member(:categories, Shapes::ShapeRef.new(shape: PlaceCategoryList, location_name: "Categories"))
|
1030
1041
|
Place.add_member(:country, Shapes::ShapeRef.new(shape: String, location_name: "Country"))
|
1031
1042
|
Place.add_member(:geometry, Shapes::ShapeRef.new(shape: PlaceGeometry, required: true, location_name: "Geometry"))
|
1032
1043
|
Place.add_member(:interpolated, Shapes::ShapeRef.new(shape: Boolean, location_name: "Interpolated"))
|
@@ -1037,14 +1048,19 @@ module Aws::LocationService
|
|
1037
1048
|
Place.add_member(:region, Shapes::ShapeRef.new(shape: String, location_name: "Region"))
|
1038
1049
|
Place.add_member(:street, Shapes::ShapeRef.new(shape: String, location_name: "Street"))
|
1039
1050
|
Place.add_member(:sub_region, Shapes::ShapeRef.new(shape: String, location_name: "SubRegion"))
|
1051
|
+
Place.add_member(:supplemental_categories, Shapes::ShapeRef.new(shape: PlaceSupplementalCategoryList, location_name: "SupplementalCategories"))
|
1040
1052
|
Place.add_member(:time_zone, Shapes::ShapeRef.new(shape: TimeZone, location_name: "TimeZone"))
|
1041
1053
|
Place.add_member(:unit_number, Shapes::ShapeRef.new(shape: String, location_name: "UnitNumber"))
|
1042
1054
|
Place.add_member(:unit_type, Shapes::ShapeRef.new(shape: String, location_name: "UnitType"))
|
1043
1055
|
Place.struct_class = Types::Place
|
1044
1056
|
|
1057
|
+
PlaceCategoryList.member = Shapes::ShapeRef.new(shape: PlaceCategory)
|
1058
|
+
|
1045
1059
|
PlaceGeometry.add_member(:point, Shapes::ShapeRef.new(shape: Position, location_name: "Point"))
|
1046
1060
|
PlaceGeometry.struct_class = Types::PlaceGeometry
|
1047
1061
|
|
1062
|
+
PlaceSupplementalCategoryList.member = Shapes::ShapeRef.new(shape: PlaceSupplementalCategory)
|
1063
|
+
|
1048
1064
|
Position.member = Shapes::ShapeRef.new(shape: Double)
|
1049
1065
|
|
1050
1066
|
PositionalAccuracy.add_member(:horizontal, Shapes::ShapeRef.new(shape: PositionalAccuracyHorizontalDouble, required: true, location_name: "Horizontal"))
|
@@ -1055,6 +1071,7 @@ module Aws::LocationService
|
|
1055
1071
|
|
1056
1072
|
PutGeofenceRequest.add_member(:collection_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "CollectionName"))
|
1057
1073
|
PutGeofenceRequest.add_member(:geofence_id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "GeofenceId"))
|
1074
|
+
PutGeofenceRequest.add_member(:geofence_properties, Shapes::ShapeRef.new(shape: PropertyMap, location_name: "GeofenceProperties"))
|
1058
1075
|
PutGeofenceRequest.add_member(:geometry, Shapes::ShapeRef.new(shape: GeofenceGeometry, required: true, location_name: "Geometry"))
|
1059
1076
|
PutGeofenceRequest.struct_class = Types::PutGeofenceRequest
|
1060
1077
|
|
@@ -1086,7 +1103,9 @@ module Aws::LocationService
|
|
1086
1103
|
|
1087
1104
|
SearchForPositionResultList.member = Shapes::ShapeRef.new(shape: SearchForPositionResult)
|
1088
1105
|
|
1106
|
+
SearchForSuggestionsResult.add_member(:categories, Shapes::ShapeRef.new(shape: PlaceCategoryList, location_name: "Categories"))
|
1089
1107
|
SearchForSuggestionsResult.add_member(:place_id, Shapes::ShapeRef.new(shape: PlaceId, location_name: "PlaceId"))
|
1108
|
+
SearchForSuggestionsResult.add_member(:supplemental_categories, Shapes::ShapeRef.new(shape: PlaceSupplementalCategoryList, location_name: "SupplementalCategories"))
|
1090
1109
|
SearchForSuggestionsResult.add_member(:text, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Text"))
|
1091
1110
|
SearchForSuggestionsResult.struct_class = Types::SearchForSuggestionsResult
|
1092
1111
|
|
@@ -1118,6 +1137,7 @@ module Aws::LocationService
|
|
1118
1137
|
|
1119
1138
|
SearchPlaceIndexForSuggestionsRequest.add_member(:bias_position, Shapes::ShapeRef.new(shape: Position, location_name: "BiasPosition"))
|
1120
1139
|
SearchPlaceIndexForSuggestionsRequest.add_member(:filter_b_box, Shapes::ShapeRef.new(shape: BoundingBox, location_name: "FilterBBox"))
|
1140
|
+
SearchPlaceIndexForSuggestionsRequest.add_member(:filter_categories, Shapes::ShapeRef.new(shape: FilterPlaceCategoryList, location_name: "FilterCategories"))
|
1121
1141
|
SearchPlaceIndexForSuggestionsRequest.add_member(:filter_countries, Shapes::ShapeRef.new(shape: CountryCodeList, location_name: "FilterCountries"))
|
1122
1142
|
SearchPlaceIndexForSuggestionsRequest.add_member(:index_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "IndexName"))
|
1123
1143
|
SearchPlaceIndexForSuggestionsRequest.add_member(:language, Shapes::ShapeRef.new(shape: LanguageTag, location_name: "Language"))
|
@@ -1132,6 +1152,7 @@ module Aws::LocationService
|
|
1132
1152
|
SearchPlaceIndexForSuggestionsSummary.add_member(:bias_position, Shapes::ShapeRef.new(shape: Position, location_name: "BiasPosition"))
|
1133
1153
|
SearchPlaceIndexForSuggestionsSummary.add_member(:data_source, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DataSource"))
|
1134
1154
|
SearchPlaceIndexForSuggestionsSummary.add_member(:filter_b_box, Shapes::ShapeRef.new(shape: BoundingBox, location_name: "FilterBBox"))
|
1155
|
+
SearchPlaceIndexForSuggestionsSummary.add_member(:filter_categories, Shapes::ShapeRef.new(shape: FilterPlaceCategoryList, location_name: "FilterCategories"))
|
1135
1156
|
SearchPlaceIndexForSuggestionsSummary.add_member(:filter_countries, Shapes::ShapeRef.new(shape: CountryCodeList, location_name: "FilterCountries"))
|
1136
1157
|
SearchPlaceIndexForSuggestionsSummary.add_member(:language, Shapes::ShapeRef.new(shape: LanguageTag, location_name: "Language"))
|
1137
1158
|
SearchPlaceIndexForSuggestionsSummary.add_member(:max_results, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxResults"))
|
@@ -1140,6 +1161,7 @@ module Aws::LocationService
|
|
1140
1161
|
|
1141
1162
|
SearchPlaceIndexForTextRequest.add_member(:bias_position, Shapes::ShapeRef.new(shape: Position, location_name: "BiasPosition"))
|
1142
1163
|
SearchPlaceIndexForTextRequest.add_member(:filter_b_box, Shapes::ShapeRef.new(shape: BoundingBox, location_name: "FilterBBox"))
|
1164
|
+
SearchPlaceIndexForTextRequest.add_member(:filter_categories, Shapes::ShapeRef.new(shape: FilterPlaceCategoryList, location_name: "FilterCategories"))
|
1143
1165
|
SearchPlaceIndexForTextRequest.add_member(:filter_countries, Shapes::ShapeRef.new(shape: CountryCodeList, location_name: "FilterCountries"))
|
1144
1166
|
SearchPlaceIndexForTextRequest.add_member(:index_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "IndexName"))
|
1145
1167
|
SearchPlaceIndexForTextRequest.add_member(:language, Shapes::ShapeRef.new(shape: LanguageTag, location_name: "Language"))
|
@@ -1154,6 +1176,7 @@ module Aws::LocationService
|
|
1154
1176
|
SearchPlaceIndexForTextSummary.add_member(:bias_position, Shapes::ShapeRef.new(shape: Position, location_name: "BiasPosition"))
|
1155
1177
|
SearchPlaceIndexForTextSummary.add_member(:data_source, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DataSource"))
|
1156
1178
|
SearchPlaceIndexForTextSummary.add_member(:filter_b_box, Shapes::ShapeRef.new(shape: BoundingBox, location_name: "FilterBBox"))
|
1179
|
+
SearchPlaceIndexForTextSummary.add_member(:filter_categories, Shapes::ShapeRef.new(shape: FilterPlaceCategoryList, location_name: "FilterCategories"))
|
1157
1180
|
SearchPlaceIndexForTextSummary.add_member(:filter_countries, Shapes::ShapeRef.new(shape: CountryCodeList, location_name: "FilterCountries"))
|
1158
1181
|
SearchPlaceIndexForTextSummary.add_member(:language, Shapes::ShapeRef.new(shape: LanguageTag, location_name: "Language"))
|
1159
1182
|
SearchPlaceIndexForTextSummary.add_member(:max_results, Shapes::ShapeRef.new(shape: PlaceIndexSearchResultLimit, location_name: "MaxResults"))
|
@@ -447,6 +447,11 @@ module Aws::LocationService
|
|
447
447
|
# collection.
|
448
448
|
# @return [String]
|
449
449
|
#
|
450
|
+
# @!attribute [rw] geofence_properties
|
451
|
+
# Specifies additional user-defined properties to store with the
|
452
|
+
# Geofence. An array of key-value pairs.
|
453
|
+
# @return [Hash<String,String>]
|
454
|
+
#
|
450
455
|
# @!attribute [rw] geometry
|
451
456
|
# Contains the details of the position of the geofence. Can be either
|
452
457
|
# a polygon or a circle. Including both will return a validation
|
@@ -465,8 +470,9 @@ module Aws::LocationService
|
|
465
470
|
#
|
466
471
|
class BatchPutGeofenceRequestEntry < Struct.new(
|
467
472
|
:geofence_id,
|
473
|
+
:geofence_properties,
|
468
474
|
:geometry)
|
469
|
-
SENSITIVE = []
|
475
|
+
SENSITIVE = [:geofence_properties]
|
470
476
|
include Aws::Structure
|
471
477
|
end
|
472
478
|
|
@@ -560,7 +566,8 @@ module Aws::LocationService
|
|
560
566
|
# @return [String]
|
561
567
|
#
|
562
568
|
# @!attribute [rw] updates
|
563
|
-
# Contains the position update details for each device
|
569
|
+
# Contains the position update details for each device, up to 10
|
570
|
+
# devices.
|
564
571
|
# @return [Array<Types::DevicePositionUpdate>]
|
565
572
|
#
|
566
573
|
# @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/BatchUpdateDevicePositionRequest AWS API Documentation
|
@@ -3004,6 +3011,11 @@ module Aws::LocationService
|
|
3004
3011
|
# The geofence identifier.
|
3005
3012
|
# @return [String]
|
3006
3013
|
#
|
3014
|
+
# @!attribute [rw] geofence_properties
|
3015
|
+
# Contains additional user-defined properties stored with the
|
3016
|
+
# geofence. An array of key-value pairs.
|
3017
|
+
# @return [Hash<String,String>]
|
3018
|
+
#
|
3007
3019
|
# @!attribute [rw] geometry
|
3008
3020
|
# Contains the geofence geometry details describing a polygon or a
|
3009
3021
|
# circle.
|
@@ -3038,10 +3050,11 @@ module Aws::LocationService
|
|
3038
3050
|
class GetGeofenceResponse < Struct.new(
|
3039
3051
|
:create_time,
|
3040
3052
|
:geofence_id,
|
3053
|
+
:geofence_properties,
|
3041
3054
|
:geometry,
|
3042
3055
|
:status,
|
3043
3056
|
:update_time)
|
3044
|
-
SENSITIVE = []
|
3057
|
+
SENSITIVE = [:geofence_properties]
|
3045
3058
|
include Aws::Structure
|
3046
3059
|
end
|
3047
3060
|
|
@@ -3718,6 +3731,11 @@ module Aws::LocationService
|
|
3718
3731
|
# The geofence identifier.
|
3719
3732
|
# @return [String]
|
3720
3733
|
#
|
3734
|
+
# @!attribute [rw] geofence_properties
|
3735
|
+
# Contains additional user-defined properties stored with the
|
3736
|
+
# geofence. An array of key-value pairs.
|
3737
|
+
# @return [Hash<String,String>]
|
3738
|
+
#
|
3721
3739
|
# @!attribute [rw] geometry
|
3722
3740
|
# Contains the geofence geometry details describing a polygon or a
|
3723
3741
|
# circle.
|
@@ -3752,10 +3770,11 @@ module Aws::LocationService
|
|
3752
3770
|
class ListGeofenceResponseEntry < Struct.new(
|
3753
3771
|
:create_time,
|
3754
3772
|
:geofence_id,
|
3773
|
+
:geofence_properties,
|
3755
3774
|
:geometry,
|
3756
3775
|
:status,
|
3757
3776
|
:update_time)
|
3758
|
-
SENSITIVE = []
|
3777
|
+
SENSITIVE = [:geofence_properties]
|
3759
3778
|
include Aws::Structure
|
3760
3779
|
end
|
3761
3780
|
|
@@ -4588,6 +4607,18 @@ module Aws::LocationService
|
|
4588
4607
|
# The numerical portion of an address, such as a building number.
|
4589
4608
|
# @return [String]
|
4590
4609
|
#
|
4610
|
+
# @!attribute [rw] categories
|
4611
|
+
# The Amazon Location categories that describe this Place.
|
4612
|
+
#
|
4613
|
+
# For more information about using categories, including a list of
|
4614
|
+
# Amazon Location categories, see [Categories and filtering][1], in
|
4615
|
+
# the *Amazon Location Service Developer Guide*.
|
4616
|
+
#
|
4617
|
+
#
|
4618
|
+
#
|
4619
|
+
# [1]: https://docs.aws.amazon.com/location/latest/developerguide/category-filtering.html
|
4620
|
+
# @return [Array<String>]
|
4621
|
+
#
|
4591
4622
|
# @!attribute [rw] country
|
4592
4623
|
# A country/region specified using [ISO 3166][1] 3-digit
|
4593
4624
|
# country/region code. For example, `CAN`.
|
@@ -4648,17 +4679,22 @@ module Aws::LocationService
|
|
4648
4679
|
# `Metro Vancouver`.
|
4649
4680
|
# @return [String]
|
4650
4681
|
#
|
4682
|
+
# @!attribute [rw] supplemental_categories
|
4683
|
+
# Categories from the data provider that describe the Place that are
|
4684
|
+
# not mapped to any Amazon Location categories.
|
4685
|
+
# @return [Array<String>]
|
4686
|
+
#
|
4651
4687
|
# @!attribute [rw] time_zone
|
4652
4688
|
# The time zone in which the `Place` is located. Returned only when
|
4653
|
-
# using HERE as the selected partner.
|
4689
|
+
# using HERE or Grab as the selected partner.
|
4654
4690
|
# @return [Types::TimeZone]
|
4655
4691
|
#
|
4656
4692
|
# @!attribute [rw] unit_number
|
4657
4693
|
# For addresses with multiple units, the unit identifier. Can include
|
4658
4694
|
# numbers and letters, for example `3B` or `Unit 123`.
|
4659
4695
|
#
|
4660
|
-
# <note markdown="1"> Returned only for a place index that uses Esri as a data
|
4661
|
-
# Is not returned for `SearchPlaceIndexForPosition`.
|
4696
|
+
# <note markdown="1"> Returned only for a place index that uses Esri or Grab as a data
|
4697
|
+
# provider. Is not returned for `SearchPlaceIndexForPosition`.
|
4662
4698
|
#
|
4663
4699
|
# </note>
|
4664
4700
|
# @return [String]
|
@@ -4666,12 +4702,17 @@ module Aws::LocationService
|
|
4666
4702
|
# @!attribute [rw] unit_type
|
4667
4703
|
# For addresses with a `UnitNumber`, the type of unit. For example,
|
4668
4704
|
# `Apartment`.
|
4705
|
+
#
|
4706
|
+
# <note markdown="1"> Returned only for a place index that uses Esri as a data provider.
|
4707
|
+
#
|
4708
|
+
# </note>
|
4669
4709
|
# @return [String]
|
4670
4710
|
#
|
4671
4711
|
# @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/Place AWS API Documentation
|
4672
4712
|
#
|
4673
4713
|
class Place < Struct.new(
|
4674
4714
|
:address_number,
|
4715
|
+
:categories,
|
4675
4716
|
:country,
|
4676
4717
|
:geometry,
|
4677
4718
|
:interpolated,
|
@@ -4682,6 +4723,7 @@ module Aws::LocationService
|
|
4682
4723
|
:region,
|
4683
4724
|
:street,
|
4684
4725
|
:sub_region,
|
4726
|
+
:supplemental_categories,
|
4685
4727
|
:time_zone,
|
4686
4728
|
:unit_number,
|
4687
4729
|
:unit_type)
|
@@ -4735,6 +4777,11 @@ module Aws::LocationService
|
|
4735
4777
|
# An identifier for the geofence. For example, `ExampleGeofence-1`.
|
4736
4778
|
# @return [String]
|
4737
4779
|
#
|
4780
|
+
# @!attribute [rw] geofence_properties
|
4781
|
+
# Specifies additional user-defined properties to store with the
|
4782
|
+
# Geofence. An array of key-value pairs.
|
4783
|
+
# @return [Hash<String,String>]
|
4784
|
+
#
|
4738
4785
|
# @!attribute [rw] geometry
|
4739
4786
|
# Contains the details to specify the position of the geofence. Can be
|
4740
4787
|
# either a polygon or a circle. Including both will return a
|
@@ -4754,8 +4801,9 @@ module Aws::LocationService
|
|
4754
4801
|
class PutGeofenceRequest < Struct.new(
|
4755
4802
|
:collection_name,
|
4756
4803
|
:geofence_id,
|
4804
|
+
:geofence_properties,
|
4757
4805
|
:geometry)
|
4758
|
-
SENSITIVE = []
|
4806
|
+
SENSITIVE = [:geofence_properties]
|
4759
4807
|
include Aws::Structure
|
4760
4808
|
end
|
4761
4809
|
|
@@ -4928,9 +4976,25 @@ module Aws::LocationService
|
|
4928
4976
|
# Contains a place suggestion resulting from a place suggestion query
|
4929
4977
|
# that is run on a place index resource.
|
4930
4978
|
#
|
4979
|
+
# @!attribute [rw] categories
|
4980
|
+
# The Amazon Location categories that describe the Place.
|
4981
|
+
#
|
4982
|
+
# For more information about using categories, including a list of
|
4983
|
+
# Amazon Location categories, see [Categories and filtering][1], in
|
4984
|
+
# the *Amazon Location Service Developer Guide*.
|
4985
|
+
#
|
4986
|
+
#
|
4987
|
+
#
|
4988
|
+
# [1]: https://docs.aws.amazon.com/location/latest/developerguide/category-filtering.html
|
4989
|
+
# @return [Array<String>]
|
4990
|
+
#
|
4931
4991
|
# @!attribute [rw] place_id
|
4932
|
-
# The unique identifier of the
|
4933
|
-
# `GetPlace` operation to find the place again later
|
4992
|
+
# The unique identifier of the Place. You can use this with the
|
4993
|
+
# `GetPlace` operation to find the place again later, or to get full
|
4994
|
+
# information for the Place.
|
4995
|
+
#
|
4996
|
+
# The `GetPlace` request must use the same `PlaceIndex` resource as
|
4997
|
+
# the `SearchPlaceIndexForSuggestions` that generated the Place ID.
|
4934
4998
|
#
|
4935
4999
|
# <note markdown="1"> For `SearchPlaceIndexForSuggestions` operations, the `PlaceId` is
|
4936
5000
|
# returned by place indexes that use Esri, Grab, or HERE as data
|
@@ -4939,6 +5003,11 @@ module Aws::LocationService
|
|
4939
5003
|
# </note>
|
4940
5004
|
# @return [String]
|
4941
5005
|
#
|
5006
|
+
# @!attribute [rw] supplemental_categories
|
5007
|
+
# Categories from the data provider that describe the Place that are
|
5008
|
+
# not mapped to any Amazon Location categories.
|
5009
|
+
# @return [Array<String>]
|
5010
|
+
#
|
4942
5011
|
# @!attribute [rw] text
|
4943
5012
|
# The text of the place suggestion, typically formatted as an address
|
4944
5013
|
# string.
|
@@ -4947,7 +5016,9 @@ module Aws::LocationService
|
|
4947
5016
|
# @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/SearchForSuggestionsResult AWS API Documentation
|
4948
5017
|
#
|
4949
5018
|
class SearchForSuggestionsResult < Struct.new(
|
5019
|
+
:categories,
|
4950
5020
|
:place_id,
|
5021
|
+
:supplemental_categories,
|
4951
5022
|
:text)
|
4952
5023
|
SENSITIVE = []
|
4953
5024
|
include Aws::Structure
|
@@ -5170,6 +5241,20 @@ module Aws::LocationService
|
|
5170
5241
|
# </note>
|
5171
5242
|
# @return [Array<Float>]
|
5172
5243
|
#
|
5244
|
+
# @!attribute [rw] filter_categories
|
5245
|
+
# A list of one or more Amazon Location categories to filter the
|
5246
|
+
# returned places. If you include more than one category, the results
|
5247
|
+
# will include results that match *any* of the categories listed.
|
5248
|
+
#
|
5249
|
+
# For more information about using categories, including a list of
|
5250
|
+
# Amazon Location categories, see [Categories and filtering][1], in
|
5251
|
+
# the *Amazon Location Service Developer Guide*.
|
5252
|
+
#
|
5253
|
+
#
|
5254
|
+
#
|
5255
|
+
# [1]: https://docs.aws.amazon.com/location/latest/developerguide/category-filtering.html
|
5256
|
+
# @return [Array<String>]
|
5257
|
+
#
|
5173
5258
|
# @!attribute [rw] filter_countries
|
5174
5259
|
# An optional parameter that limits the search results by returning
|
5175
5260
|
# only suggestions within the provided list of countries.
|
@@ -5229,6 +5314,7 @@ module Aws::LocationService
|
|
5229
5314
|
class SearchPlaceIndexForSuggestionsRequest < Struct.new(
|
5230
5315
|
:bias_position,
|
5231
5316
|
:filter_b_box,
|
5317
|
+
:filter_categories,
|
5232
5318
|
:filter_countries,
|
5233
5319
|
:index_name,
|
5234
5320
|
:language,
|
@@ -5296,6 +5382,10 @@ module Aws::LocationService
|
|
5296
5382
|
# the request.
|
5297
5383
|
# @return [Array<Float>]
|
5298
5384
|
#
|
5385
|
+
# @!attribute [rw] filter_categories
|
5386
|
+
# The optional category filter specified in the request.
|
5387
|
+
# @return [Array<String>]
|
5388
|
+
#
|
5299
5389
|
# @!attribute [rw] filter_countries
|
5300
5390
|
# Contains the optional country filter specified in the request.
|
5301
5391
|
# @return [Array<String>]
|
@@ -5324,6 +5414,7 @@ module Aws::LocationService
|
|
5324
5414
|
:bias_position,
|
5325
5415
|
:data_source,
|
5326
5416
|
:filter_b_box,
|
5417
|
+
:filter_categories,
|
5327
5418
|
:filter_countries,
|
5328
5419
|
:language,
|
5329
5420
|
:max_results,
|
@@ -5371,6 +5462,20 @@ module Aws::LocationService
|
|
5371
5462
|
# </note>
|
5372
5463
|
# @return [Array<Float>]
|
5373
5464
|
#
|
5465
|
+
# @!attribute [rw] filter_categories
|
5466
|
+
# A list of one or more Amazon Location categories to filter the
|
5467
|
+
# returned places. If you include more than one category, the results
|
5468
|
+
# will include results that match *any* of the categories listed.
|
5469
|
+
#
|
5470
|
+
# For more information about using categories, including a list of
|
5471
|
+
# Amazon Location categories, see [Categories and filtering][1], in
|
5472
|
+
# the *Amazon Location Service Developer Guide*.
|
5473
|
+
#
|
5474
|
+
#
|
5475
|
+
#
|
5476
|
+
# [1]: https://docs.aws.amazon.com/location/latest/developerguide/category-filtering.html
|
5477
|
+
# @return [Array<String>]
|
5478
|
+
#
|
5374
5479
|
# @!attribute [rw] filter_countries
|
5375
5480
|
# An optional parameter that limits the search results by returning
|
5376
5481
|
# only places that are in a specified list of countries.
|
@@ -5430,6 +5535,7 @@ module Aws::LocationService
|
|
5430
5535
|
class SearchPlaceIndexForTextRequest < Struct.new(
|
5431
5536
|
:bias_position,
|
5432
5537
|
:filter_b_box,
|
5538
|
+
:filter_categories,
|
5433
5539
|
:filter_countries,
|
5434
5540
|
:index_name,
|
5435
5541
|
:language,
|
@@ -5501,6 +5607,10 @@ module Aws::LocationService
|
|
5501
5607
|
# the request.
|
5502
5608
|
# @return [Array<Float>]
|
5503
5609
|
#
|
5610
|
+
# @!attribute [rw] filter_categories
|
5611
|
+
# The optional category filter specified in the request.
|
5612
|
+
# @return [Array<String>]
|
5613
|
+
#
|
5504
5614
|
# @!attribute [rw] filter_countries
|
5505
5615
|
# Contains the optional country filter specified in the request.
|
5506
5616
|
# @return [Array<String>]
|
@@ -5538,6 +5648,7 @@ module Aws::LocationService
|
|
5538
5648
|
:bias_position,
|
5539
5649
|
:data_source,
|
5540
5650
|
:filter_b_box,
|
5651
|
+
:filter_categories,
|
5541
5652
|
:filter_countries,
|
5542
5653
|
:language,
|
5543
5654
|
:max_results,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-locationservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.34.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.176.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.176.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|