aws-sdk-locationservice 1.25.0 → 1.27.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -24,14 +24,6 @@ module Aws::LocationService
24
24
  include Aws::Structure
25
25
  end
26
26
 
27
- # @note When making an API call, you may pass AssociateTrackerConsumerRequest
28
- # data as a hash:
29
- #
30
- # {
31
- # consumer_arn: "Arn", # required
32
- # tracker_name: "ResourceName", # required
33
- # }
34
- #
35
27
  # @!attribute [rw] consumer_arn
36
28
  # The Amazon Resource Name (ARN) for the geofence collection to be
37
29
  # associated to tracker resource. Used when you need to specify a
@@ -81,14 +73,6 @@ module Aws::LocationService
81
73
  include Aws::Structure
82
74
  end
83
75
 
84
- # @note When making an API call, you may pass BatchDeleteDevicePositionHistoryRequest
85
- # data as a hash:
86
- #
87
- # {
88
- # device_ids: ["Id"], # required
89
- # tracker_name: "ResourceName", # required
90
- # }
91
- #
92
76
  # @!attribute [rw] device_ids
93
77
  # Devices whose position history you want to delete.
94
78
  #
@@ -145,14 +129,6 @@ module Aws::LocationService
145
129
  include Aws::Structure
146
130
  end
147
131
 
148
- # @note When making an API call, you may pass BatchDeleteGeofenceRequest
149
- # data as a hash:
150
- #
151
- # {
152
- # collection_name: "ResourceName", # required
153
- # geofence_ids: ["Id"], # required
154
- # }
155
- #
156
132
  # @!attribute [rw] collection_name
157
133
  # The geofence collection storing the geofences to be deleted.
158
134
  # @return [String]
@@ -212,26 +188,6 @@ module Aws::LocationService
212
188
  include Aws::Structure
213
189
  end
214
190
 
215
- # @note When making an API call, you may pass BatchEvaluateGeofencesRequest
216
- # data as a hash:
217
- #
218
- # {
219
- # collection_name: "ResourceName", # required
220
- # device_position_updates: [ # required
221
- # {
222
- # accuracy: {
223
- # horizontal: 1.0, # required
224
- # },
225
- # device_id: "Id", # required
226
- # position: [1.0], # required
227
- # position_properties: {
228
- # "PropertyMapKeyString" => "PropertyMapValueString",
229
- # },
230
- # sample_time: Time.now, # required
231
- # },
232
- # ],
233
- # }
234
- #
235
191
  # @!attribute [rw] collection_name
236
192
  # The geofence collection used in evaluating the position of devices
237
193
  # against its geofences.
@@ -283,14 +239,6 @@ module Aws::LocationService
283
239
  include Aws::Structure
284
240
  end
285
241
 
286
- # @note When making an API call, you may pass BatchGetDevicePositionRequest
287
- # data as a hash:
288
- #
289
- # {
290
- # device_ids: ["Id"], # required
291
- # tracker_name: "BatchGetDevicePositionRequestTrackerNameString", # required
292
- # }
293
- #
294
242
  # @!attribute [rw] device_ids
295
243
  # Devices whose position you want to retrieve.
296
244
  #
@@ -371,29 +319,6 @@ module Aws::LocationService
371
319
  include Aws::Structure
372
320
  end
373
321
 
374
- # @note When making an API call, you may pass BatchPutGeofenceRequest
375
- # data as a hash:
376
- #
377
- # {
378
- # collection_name: "ResourceName", # required
379
- # entries: [ # required
380
- # {
381
- # geofence_id: "Id", # required
382
- # geometry: { # required
383
- # circle: {
384
- # center: [1.0], # required
385
- # radius: 1.0, # required
386
- # },
387
- # polygon: [
388
- # [
389
- # [1.0],
390
- # ],
391
- # ],
392
- # },
393
- # },
394
- # ],
395
- # }
396
- #
397
322
  # @!attribute [rw] collection_name
398
323
  # The geofence collection storing the geofences.
399
324
  # @return [String]
@@ -413,24 +338,6 @@ module Aws::LocationService
413
338
 
414
339
  # Contains geofence geometry details.
415
340
  #
416
- # @note When making an API call, you may pass BatchPutGeofenceRequestEntry
417
- # data as a hash:
418
- #
419
- # {
420
- # geofence_id: "Id", # required
421
- # geometry: { # required
422
- # circle: {
423
- # center: [1.0], # required
424
- # radius: 1.0, # required
425
- # },
426
- # polygon: [
427
- # [
428
- # [1.0],
429
- # ],
430
- # ],
431
- # },
432
- # }
433
- #
434
341
  # @!attribute [rw] geofence_id
435
342
  # The identifier for the geofence to be stored in a given geofence
436
343
  # collection.
@@ -544,26 +451,6 @@ module Aws::LocationService
544
451
  include Aws::Structure
545
452
  end
546
453
 
547
- # @note When making an API call, you may pass BatchUpdateDevicePositionRequest
548
- # data as a hash:
549
- #
550
- # {
551
- # tracker_name: "ResourceName", # required
552
- # updates: [ # required
553
- # {
554
- # accuracy: {
555
- # horizontal: 1.0, # required
556
- # },
557
- # device_id: "Id", # required
558
- # position: [1.0], # required
559
- # position_properties: {
560
- # "PropertyMapKeyString" => "PropertyMapValueString",
561
- # },
562
- # sample_time: Time.now, # required
563
- # },
564
- # ],
565
- # }
566
- #
567
454
  # @!attribute [rw] tracker_name
568
455
  # The name of the tracker resource to update.
569
456
  # @return [String]
@@ -597,14 +484,6 @@ module Aws::LocationService
597
484
  # Contains details about additional route preferences for requests that
598
485
  # specify `TravelMode` as `Car`.
599
486
  #
600
- # @note When making an API call, you may pass CalculateRouteCarModeOptions
601
- # data as a hash:
602
- #
603
- # {
604
- # avoid_ferries: false,
605
- # avoid_tolls: false,
606
- # }
607
- #
608
487
  # @!attribute [rw] avoid_ferries
609
488
  # Avoids ferries when calculating routes.
610
489
  #
@@ -630,41 +509,6 @@ module Aws::LocationService
630
509
  include Aws::Structure
631
510
  end
632
511
 
633
- # @note When making an API call, you may pass CalculateRouteMatrixRequest
634
- # data as a hash:
635
- #
636
- # {
637
- # calculator_name: "ResourceName", # required
638
- # car_mode_options: {
639
- # avoid_ferries: false,
640
- # avoid_tolls: false,
641
- # },
642
- # depart_now: false,
643
- # departure_positions: [ # required
644
- # [1.0],
645
- # ],
646
- # departure_time: Time.now,
647
- # destination_positions: [ # required
648
- # [1.0],
649
- # ],
650
- # distance_unit: "Kilometers", # accepts Kilometers, Miles
651
- # travel_mode: "Car", # accepts Car, Truck, Walking
652
- # truck_mode_options: {
653
- # avoid_ferries: false,
654
- # avoid_tolls: false,
655
- # dimensions: {
656
- # height: 1.0,
657
- # length: 1.0,
658
- # unit: "Meters", # accepts Meters, Feet
659
- # width: 1.0,
660
- # },
661
- # weight: {
662
- # total: 1.0,
663
- # unit: "Kilograms", # accepts Kilograms, Pounds
664
- # },
665
- # },
666
- # }
667
- #
668
512
  # @!attribute [rw] calculator_name
669
513
  # The name of the route calculator resource that you want to use to
670
514
  # calculate the route matrix.
@@ -781,7 +625,21 @@ module Aws::LocationService
781
625
  #
782
626
  # * If traveling by `Truck` use the `TruckModeOptions` parameter.
783
627
  #
628
+ # <note markdown="1"> `Bicycle` or `Motorcycle` are only valid when using `Grab` as a data
629
+ # provider, and only within Southeast Asia.
630
+ #
631
+ # `Truck` is not available for Grab.
632
+ #
633
+ # For more information about using Grab as a data provider, see
634
+ # [GrabMaps][1] in the *Amazon Location Service Developer Guide*.
635
+ #
636
+ # </note>
637
+ #
784
638
  # Default Value: `Car`
639
+ #
640
+ #
641
+ #
642
+ # [1]: https://docs.aws.amazon.com/location/latest/developerguide/grab.html
785
643
  # @return [String]
786
644
  #
787
645
  # @!attribute [rw] truck_mode_options
@@ -854,6 +712,8 @@ module Aws::LocationService
854
712
  #
855
713
  # * `Esri`
856
714
  #
715
+ # * `Grab`
716
+ #
857
717
  # * `Here`
858
718
  #
859
719
  # For more information about data providers, see [Amazon Location
@@ -890,41 +750,6 @@ module Aws::LocationService
890
750
  include Aws::Structure
891
751
  end
892
752
 
893
- # @note When making an API call, you may pass CalculateRouteRequest
894
- # data as a hash:
895
- #
896
- # {
897
- # calculator_name: "ResourceName", # required
898
- # car_mode_options: {
899
- # avoid_ferries: false,
900
- # avoid_tolls: false,
901
- # },
902
- # depart_now: false,
903
- # departure_position: [1.0], # required
904
- # departure_time: Time.now,
905
- # destination_position: [1.0], # required
906
- # distance_unit: "Kilometers", # accepts Kilometers, Miles
907
- # include_leg_geometry: false,
908
- # travel_mode: "Car", # accepts Car, Truck, Walking
909
- # truck_mode_options: {
910
- # avoid_ferries: false,
911
- # avoid_tolls: false,
912
- # dimensions: {
913
- # height: 1.0,
914
- # length: 1.0,
915
- # unit: "Meters", # accepts Meters, Feet
916
- # width: 1.0,
917
- # },
918
- # weight: {
919
- # total: 1.0,
920
- # unit: "Kilograms", # accepts Kilograms, Pounds
921
- # },
922
- # },
923
- # waypoint_positions: [
924
- # [1.0],
925
- # ],
926
- # }
927
- #
928
753
  # @!attribute [rw] calculator_name
929
754
  # The name of the route calculator resource that you want to use to
930
755
  # calculate the route.
@@ -1029,7 +854,19 @@ module Aws::LocationService
1029
854
  # @!attribute [rw] travel_mode
1030
855
  # Specifies the mode of transport when calculating a route. Used in
1031
856
  # estimating the speed of travel and road compatibility. You can
1032
- # choose `Car`, `Truck`, or `Walking` as options for the `TravelMode`.
857
+ # choose `Car`, `Truck`, `Walking`, `Bicycle` or `Motorcycle` as
858
+ # options for the `TravelMode`.
859
+ #
860
+ # <note markdown="1"> `Bicycle` and `Motorcycle` are only valid when using Grab as a data
861
+ # provider, and only within Southeast Asia.
862
+ #
863
+ # `Truck` is not available for Grab.
864
+ #
865
+ # For more details on the using Grab for routing, including areas of
866
+ # coverage, see [GrabMaps][1] in the *Amazon Location Service
867
+ # Developer Guide*.
868
+ #
869
+ # </note>
1033
870
  #
1034
871
  # The `TravelMode` you specify also determines how you specify route
1035
872
  # preferences:
@@ -1039,6 +876,10 @@ module Aws::LocationService
1039
876
  # * If traveling by `Truck` use the `TruckModeOptions` parameter.
1040
877
  #
1041
878
  # Default Value: `Car`
879
+ #
880
+ #
881
+ #
882
+ # [1]: https://docs.aws.amazon.com/location/latest/developerguide/grab.html
1042
883
  # @return [String]
1043
884
  #
1044
885
  # @!attribute [rw] truck_mode_options
@@ -1152,6 +993,8 @@ module Aws::LocationService
1152
993
  #
1153
994
  # * `Esri`
1154
995
  #
996
+ # * `Grab`
997
+ #
1155
998
  # * `Here`
1156
999
  #
1157
1000
  # For more information about data providers, see [Amazon Location
@@ -1219,24 +1062,6 @@ module Aws::LocationService
1219
1062
  # Contains details about additional route preferences for requests that
1220
1063
  # specify `TravelMode` as `Truck`.
1221
1064
  #
1222
- # @note When making an API call, you may pass CalculateRouteTruckModeOptions
1223
- # data as a hash:
1224
- #
1225
- # {
1226
- # avoid_ferries: false,
1227
- # avoid_tolls: false,
1228
- # dimensions: {
1229
- # height: 1.0,
1230
- # length: 1.0,
1231
- # unit: "Meters", # accepts Meters, Feet
1232
- # width: 1.0,
1233
- # },
1234
- # weight: {
1235
- # total: 1.0,
1236
- # unit: "Kilograms", # accepts Kilograms, Pounds
1237
- # },
1238
- # }
1239
- #
1240
1065
  # @!attribute [rw] avoid_ferries
1241
1066
  # Avoids ferries when calculating routes.
1242
1067
  #
@@ -1278,14 +1103,6 @@ module Aws::LocationService
1278
1103
 
1279
1104
  # A circle on the earth, as defined by a center point and a radius.
1280
1105
  #
1281
- # @note When making an API call, you may pass Circle
1282
- # data as a hash:
1283
- #
1284
- # {
1285
- # center: [1.0], # required
1286
- # radius: 1.0, # required
1287
- # }
1288
- #
1289
1106
  # @!attribute [rw] center
1290
1107
  # A single point geometry, specifying the center of the circle, using
1291
1108
  # [WGS 84][1] coordinates, in the form `[longitude, latitude]`.
@@ -1322,20 +1139,6 @@ module Aws::LocationService
1322
1139
  include Aws::Structure
1323
1140
  end
1324
1141
 
1325
- # @note When making an API call, you may pass CreateGeofenceCollectionRequest
1326
- # data as a hash:
1327
- #
1328
- # {
1329
- # collection_name: "ResourceName", # required
1330
- # description: "ResourceDescription",
1331
- # kms_key_id: "KmsKeyId",
1332
- # pricing_plan: "RequestBasedUsage", # accepts RequestBasedUsage, MobileAssetTracking, MobileAssetManagement
1333
- # pricing_plan_data_source: "String",
1334
- # tags: {
1335
- # "TagKey" => "TagValue",
1336
- # },
1337
- # }
1338
- #
1339
1142
  # @!attribute [rw] collection_name
1340
1143
  # A custom name for the geofence collection.
1341
1144
  #
@@ -1440,21 +1243,6 @@ module Aws::LocationService
1440
1243
  include Aws::Structure
1441
1244
  end
1442
1245
 
1443
- # @note When making an API call, you may pass CreateMapRequest
1444
- # data as a hash:
1445
- #
1446
- # {
1447
- # configuration: { # required
1448
- # style: "MapStyle", # required
1449
- # },
1450
- # description: "ResourceDescription",
1451
- # map_name: "ResourceName", # required
1452
- # pricing_plan: "RequestBasedUsage", # accepts RequestBasedUsage, MobileAssetTracking, MobileAssetManagement
1453
- # tags: {
1454
- # "TagKey" => "TagValue",
1455
- # },
1456
- # }
1457
- #
1458
1246
  # @!attribute [rw] configuration
1459
1247
  # Specifies the `MapConfiguration`, including the map style, for the
1460
1248
  # map resource that you create. The map style defines the look of maps
@@ -1550,22 +1338,6 @@ module Aws::LocationService
1550
1338
  include Aws::Structure
1551
1339
  end
1552
1340
 
1553
- # @note When making an API call, you may pass CreatePlaceIndexRequest
1554
- # data as a hash:
1555
- #
1556
- # {
1557
- # data_source: "String", # required
1558
- # data_source_configuration: {
1559
- # intended_use: "SingleUse", # accepts SingleUse, Storage
1560
- # },
1561
- # description: "ResourceDescription",
1562
- # index_name: "ResourceName", # required
1563
- # pricing_plan: "RequestBasedUsage", # accepts RequestBasedUsage, MobileAssetTracking, MobileAssetManagement
1564
- # tags: {
1565
- # "TagKey" => "TagValue",
1566
- # },
1567
- # }
1568
- #
1569
1341
  # @!attribute [rw] data_source
1570
1342
  # Specifies the geospatial data provider for the new place index.
1571
1343
  #
@@ -1580,27 +1352,33 @@ module Aws::LocationService
1580
1352
  # your region of interest, see [Esri details on geocoding
1581
1353
  # coverage][2].
1582
1354
  #
1583
- # * `Here` – For additional information about [HERE Technologies][3]'
1355
+ # * `Grab` – Grab provides place index functionality for Southeast
1356
+ # Asia. For additional information about [GrabMaps][3]' coverage,
1357
+ # see [GrabMaps countries and areas covered][4].
1358
+ #
1359
+ # * `Here` – For additional information about [HERE Technologies][5]'
1584
1360
  # coverage in your region of interest, see [HERE details on
1585
- # goecoding coverage][4].
1361
+ # goecoding coverage][6].
1586
1362
  #
1587
1363
  # If you specify HERE Technologies (`Here`) as the data provider,
1588
- # you may not [store results][5] for locations in Japan. For more
1589
- # information, see the [AWS Service Terms][6] for Amazon Location
1364
+ # you may not [store results][7] for locations in Japan. For more
1365
+ # information, see the [AWS Service Terms][8] for Amazon Location
1590
1366
  # Service.
1591
1367
  #
1592
- # For additional information , see [Data providers][7] on the *Amazon
1368
+ # For additional information , see [Data providers][9] on the *Amazon
1593
1369
  # Location Service Developer Guide*.
1594
1370
  #
1595
1371
  #
1596
1372
  #
1597
1373
  # [1]: https://docs.aws.amazon.com/location/latest/developerguide/esri.html
1598
1374
  # [2]: https://developers.arcgis.com/rest/geocode/api-reference/geocode-coverage.htm
1599
- # [3]: https://docs.aws.amazon.com/location/latest/developerguide/HERE.html
1600
- # [4]: https://developer.here.com/documentation/geocoder/dev_guide/topics/coverage-geocoder.html
1601
- # [5]: https://docs.aws.amazon.com/location-places/latest/APIReference/API_DataSourceConfiguration.html
1602
- # [6]: https://aws.amazon.com/service-terms/
1603
- # [7]: https://docs.aws.amazon.com/location/latest/developerguide/what-is-data-provider.html
1375
+ # [3]: https://docs.aws.amazon.com/location/latest/developerguide/grab.html
1376
+ # [4]: https://docs.aws.amazon.com/location/latest/developerguide/grab.html#grab-coverage-area
1377
+ # [5]: https://docs.aws.amazon.com/location/latest/developerguide/HERE.html
1378
+ # [6]: https://developer.here.com/documentation/geocoder/dev_guide/topics/coverage-geocoder.html
1379
+ # [7]: https://docs.aws.amazon.com/location-places/latest/APIReference/API_DataSourceConfiguration.html
1380
+ # [8]: https://aws.amazon.com/service-terms/
1381
+ # [9]: https://docs.aws.amazon.com/location/latest/developerguide/what-is-data-provider.html
1604
1382
  # @return [String]
1605
1383
  #
1606
1384
  # @!attribute [rw] data_source_configuration
@@ -1699,19 +1477,6 @@ module Aws::LocationService
1699
1477
  include Aws::Structure
1700
1478
  end
1701
1479
 
1702
- # @note When making an API call, you may pass CreateRouteCalculatorRequest
1703
- # data as a hash:
1704
- #
1705
- # {
1706
- # calculator_name: "ResourceName", # required
1707
- # data_source: "String", # required
1708
- # description: "ResourceDescription",
1709
- # pricing_plan: "RequestBasedUsage", # accepts RequestBasedUsage, MobileAssetTracking, MobileAssetManagement
1710
- # tags: {
1711
- # "TagKey" => "TagValue",
1712
- # },
1713
- # }
1714
- #
1715
1480
  # @!attribute [rw] calculator_name
1716
1481
  # The name of the route calculator resource.
1717
1482
  #
@@ -1729,9 +1494,7 @@ module Aws::LocationService
1729
1494
  # Specifies the data provider of traffic and road network data.
1730
1495
  #
1731
1496
  # <note markdown="1"> This field is case-sensitive. Enter the valid values as shown. For
1732
- # example, entering `HERE` returns an error. Route calculators that
1733
- # use Esri as a data source only calculate routes that are shorter
1734
- # than 400 km.
1497
+ # example, entering `HERE` returns an error.
1735
1498
  #
1736
1499
  # </note>
1737
1500
  #
@@ -1741,21 +1504,30 @@ module Aws::LocationService
1741
1504
  # your region of interest, see [Esri details on street networks and
1742
1505
  # traffic coverage][2].
1743
1506
  #
1744
- # * `Here` For additional information about [HERE Technologies][3]'
1507
+ # Route calculators that use Esri as a data source only calculate
1508
+ # routes that are shorter than 400 km.
1509
+ #
1510
+ # * `Grab` – Grab provides routing functionality for Southeast Asia.
1511
+ # For additional information about [GrabMaps][3]' coverage, see
1512
+ # [GrabMaps countries and areas covered][4].
1513
+ #
1514
+ # * `Here` – For additional information about [HERE Technologies][5]'
1745
1515
  # coverage in your region of interest, see [HERE car routing
1746
- # coverage][4] and [HERE truck routing coverage][5].
1516
+ # coverage][6] and [HERE truck routing coverage][7].
1747
1517
  #
1748
- # For additional information , see [Data providers][6] on the *Amazon
1518
+ # For additional information , see [Data providers][8] on the *Amazon
1749
1519
  # Location Service Developer Guide*.
1750
1520
  #
1751
1521
  #
1752
1522
  #
1753
1523
  # [1]: https://docs.aws.amazon.com/location/latest/developerguide/esri.html
1754
1524
  # [2]: https://doc.arcgis.com/en/arcgis-online/reference/network-coverage.htm
1755
- # [3]: https://docs.aws.amazon.com/location/latest/developerguide/HERE.html
1756
- # [4]: https://developer.here.com/documentation/routing-api/dev_guide/topics/coverage/car-routing.html
1757
- # [5]: https://developer.here.com/documentation/routing-api/dev_guide/topics/coverage/truck-routing.html
1758
- # [6]: https://docs.aws.amazon.com/location/latest/developerguide/what-is-data-provider.html
1525
+ # [3]: https://docs.aws.amazon.com/location/latest/developerguide/grab.html
1526
+ # [4]: https://docs.aws.amazon.com/location/latest/developerguide/grab.html#grab-coverage-area
1527
+ # [5]: https://docs.aws.amazon.com/location/latest/developerguide/HERE.html
1528
+ # [6]: https://developer.here.com/documentation/routing-api/dev_guide/topics/coverage/car-routing.html
1529
+ # [7]: https://developer.here.com/documentation/routing-api/dev_guide/topics/coverage/truck-routing.html
1530
+ # [8]: https://docs.aws.amazon.com/location/latest/developerguide/what-is-data-provider.html
1759
1531
  # @return [String]
1760
1532
  #
1761
1533
  # @!attribute [rw] description
@@ -1847,21 +1619,6 @@ module Aws::LocationService
1847
1619
  include Aws::Structure
1848
1620
  end
1849
1621
 
1850
- # @note When making an API call, you may pass CreateTrackerRequest
1851
- # data as a hash:
1852
- #
1853
- # {
1854
- # description: "ResourceDescription",
1855
- # kms_key_id: "KmsKeyId",
1856
- # position_filtering: "TimeBased", # accepts TimeBased, DistanceBased, AccuracyBased
1857
- # pricing_plan: "RequestBasedUsage", # accepts RequestBasedUsage, MobileAssetTracking, MobileAssetManagement
1858
- # pricing_plan_data_source: "String",
1859
- # tags: {
1860
- # "TagKey" => "TagValue",
1861
- # },
1862
- # tracker_name: "ResourceName", # required
1863
- # }
1864
- #
1865
1622
  # @!attribute [rw] description
1866
1623
  # An optional description for the tracker resource.
1867
1624
  # @return [String]
@@ -2019,13 +1776,6 @@ module Aws::LocationService
2019
1776
  #
2020
1777
  # [1]: https://aws.amazon.com/service-terms/
2021
1778
  #
2022
- # @note When making an API call, you may pass DataSourceConfiguration
2023
- # data as a hash:
2024
- #
2025
- # {
2026
- # intended_use: "SingleUse", # accepts SingleUse, Storage
2027
- # }
2028
- #
2029
1779
  # @!attribute [rw] intended_use
2030
1780
  # Specifies how the results of an operation will be stored by the
2031
1781
  # caller.
@@ -2048,13 +1798,6 @@ module Aws::LocationService
2048
1798
  include Aws::Structure
2049
1799
  end
2050
1800
 
2051
- # @note When making an API call, you may pass DeleteGeofenceCollectionRequest
2052
- # data as a hash:
2053
- #
2054
- # {
2055
- # collection_name: "ResourceName", # required
2056
- # }
2057
- #
2058
1801
  # @!attribute [rw] collection_name
2059
1802
  # The name of the geofence collection to be deleted.
2060
1803
  # @return [String]
@@ -2071,13 +1814,6 @@ module Aws::LocationService
2071
1814
  #
2072
1815
  class DeleteGeofenceCollectionResponse < Aws::EmptyStructure; end
2073
1816
 
2074
- # @note When making an API call, you may pass DeleteMapRequest
2075
- # data as a hash:
2076
- #
2077
- # {
2078
- # map_name: "ResourceName", # required
2079
- # }
2080
- #
2081
1817
  # @!attribute [rw] map_name
2082
1818
  # The name of the map resource to be deleted.
2083
1819
  # @return [String]
@@ -2094,13 +1830,6 @@ module Aws::LocationService
2094
1830
  #
2095
1831
  class DeleteMapResponse < Aws::EmptyStructure; end
2096
1832
 
2097
- # @note When making an API call, you may pass DeletePlaceIndexRequest
2098
- # data as a hash:
2099
- #
2100
- # {
2101
- # index_name: "ResourceName", # required
2102
- # }
2103
- #
2104
1833
  # @!attribute [rw] index_name
2105
1834
  # The name of the place index resource to be deleted.
2106
1835
  # @return [String]
@@ -2117,13 +1846,6 @@ module Aws::LocationService
2117
1846
  #
2118
1847
  class DeletePlaceIndexResponse < Aws::EmptyStructure; end
2119
1848
 
2120
- # @note When making an API call, you may pass DeleteRouteCalculatorRequest
2121
- # data as a hash:
2122
- #
2123
- # {
2124
- # calculator_name: "ResourceName", # required
2125
- # }
2126
- #
2127
1849
  # @!attribute [rw] calculator_name
2128
1850
  # The name of the route calculator resource to be deleted.
2129
1851
  # @return [String]
@@ -2140,13 +1862,6 @@ module Aws::LocationService
2140
1862
  #
2141
1863
  class DeleteRouteCalculatorResponse < Aws::EmptyStructure; end
2142
1864
 
2143
- # @note When making an API call, you may pass DeleteTrackerRequest
2144
- # data as a hash:
2145
- #
2146
- # {
2147
- # tracker_name: "ResourceName", # required
2148
- # }
2149
- #
2150
1865
  # @!attribute [rw] tracker_name
2151
1866
  # The name of the tracker resource to be deleted.
2152
1867
  # @return [String]
@@ -2163,13 +1878,6 @@ module Aws::LocationService
2163
1878
  #
2164
1879
  class DeleteTrackerResponse < Aws::EmptyStructure; end
2165
1880
 
2166
- # @note When making an API call, you may pass DescribeGeofenceCollectionRequest
2167
- # data as a hash:
2168
- #
2169
- # {
2170
- # collection_name: "ResourceName", # required
2171
- # }
2172
- #
2173
1881
  # @!attribute [rw] collection_name
2174
1882
  # The name of the geofence collection.
2175
1883
  # @return [String]
@@ -2255,13 +1963,6 @@ module Aws::LocationService
2255
1963
  include Aws::Structure
2256
1964
  end
2257
1965
 
2258
- # @note When making an API call, you may pass DescribeMapRequest
2259
- # data as a hash:
2260
- #
2261
- # {
2262
- # map_name: "ResourceName", # required
2263
- # }
2264
- #
2265
1966
  # @!attribute [rw] map_name
2266
1967
  # The name of the map resource.
2267
1968
  # @return [String]
@@ -2341,13 +2042,6 @@ module Aws::LocationService
2341
2042
  include Aws::Structure
2342
2043
  end
2343
2044
 
2344
- # @note When making an API call, you may pass DescribePlaceIndexRequest
2345
- # data as a hash:
2346
- #
2347
- # {
2348
- # index_name: "ResourceName", # required
2349
- # }
2350
- #
2351
2045
  # @!attribute [rw] index_name
2352
2046
  # The name of the place index resource.
2353
2047
  # @return [String]
@@ -2375,6 +2069,8 @@ module Aws::LocationService
2375
2069
  #
2376
2070
  # * `Esri`
2377
2071
  #
2072
+ # * `Grab`
2073
+ #
2378
2074
  # * `Here`
2379
2075
  #
2380
2076
  # For more information about data providers, see [Amazon Location
@@ -2440,13 +2136,6 @@ module Aws::LocationService
2440
2136
  include Aws::Structure
2441
2137
  end
2442
2138
 
2443
- # @note When making an API call, you may pass DescribeRouteCalculatorRequest
2444
- # data as a hash:
2445
- #
2446
- # {
2447
- # calculator_name: "ResourceName", # required
2448
- # }
2449
- #
2450
2139
  # @!attribute [rw] calculator_name
2451
2140
  # The name of the route calculator resource.
2452
2141
  # @return [String]
@@ -2492,6 +2181,8 @@ module Aws::LocationService
2492
2181
  #
2493
2182
  # * `Esri`
2494
2183
  #
2184
+ # * `Grab`
2185
+ #
2495
2186
  # * `Here`
2496
2187
  #
2497
2188
  # For more information about data providers, see [Amazon Location
@@ -2542,13 +2233,6 @@ module Aws::LocationService
2542
2233
  include Aws::Structure
2543
2234
  end
2544
2235
 
2545
- # @note When making an API call, you may pass DescribeTrackerRequest
2546
- # data as a hash:
2547
- #
2548
- # {
2549
- # tracker_name: "ResourceName", # required
2550
- # }
2551
- #
2552
2236
  # @!attribute [rw] tracker_name
2553
2237
  # The name of the tracker resource.
2554
2238
  # @return [String]
@@ -2690,21 +2374,6 @@ module Aws::LocationService
2690
2374
 
2691
2375
  # Contains the position update details for a device.
2692
2376
  #
2693
- # @note When making an API call, you may pass DevicePositionUpdate
2694
- # data as a hash:
2695
- #
2696
- # {
2697
- # accuracy: {
2698
- # horizontal: 1.0, # required
2699
- # },
2700
- # device_id: "Id", # required
2701
- # position: [1.0], # required
2702
- # position_properties: {
2703
- # "PropertyMapKeyString" => "PropertyMapValueString",
2704
- # },
2705
- # sample_time: Time.now, # required
2706
- # }
2707
- #
2708
2377
  # @!attribute [rw] accuracy
2709
2378
  # The accuracy of the device position.
2710
2379
  # @return [Types::PositionalAccuracy]
@@ -2751,14 +2420,6 @@ module Aws::LocationService
2751
2420
  include Aws::Structure
2752
2421
  end
2753
2422
 
2754
- # @note When making an API call, you may pass DisassociateTrackerConsumerRequest
2755
- # data as a hash:
2756
- #
2757
- # {
2758
- # consumer_arn: "Arn", # required
2759
- # tracker_name: "ResourceName", # required
2760
- # }
2761
- #
2762
2423
  # @!attribute [rw] consumer_arn
2763
2424
  # The Amazon Resource Name (ARN) for the geofence collection to be
2764
2425
  # disassociated from the tracker resource. Used when you need to
@@ -2800,21 +2461,6 @@ module Aws::LocationService
2800
2461
  #
2801
2462
  # </note>
2802
2463
  #
2803
- # @note When making an API call, you may pass GeofenceGeometry
2804
- # data as a hash:
2805
- #
2806
- # {
2807
- # circle: {
2808
- # center: [1.0], # required
2809
- # radius: 1.0, # required
2810
- # },
2811
- # polygon: [
2812
- # [
2813
- # [1.0],
2814
- # ],
2815
- # ],
2816
- # }
2817
- #
2818
2464
  # @!attribute [rw] circle
2819
2465
  # A circle on the earth, as defined by a center point and a radius.
2820
2466
  # @return [Types::Circle]
@@ -2852,18 +2498,6 @@ module Aws::LocationService
2852
2498
  include Aws::Structure
2853
2499
  end
2854
2500
 
2855
- # @note When making an API call, you may pass GetDevicePositionHistoryRequest
2856
- # data as a hash:
2857
- #
2858
- # {
2859
- # device_id: "Id", # required
2860
- # end_time_exclusive: Time.now,
2861
- # max_results: 1,
2862
- # next_token: "Token",
2863
- # start_time_inclusive: Time.now,
2864
- # tracker_name: "ResourceName", # required
2865
- # }
2866
- #
2867
2501
  # @!attribute [rw] device_id
2868
2502
  # The device whose position history you want to retrieve.
2869
2503
  # @return [String]
@@ -2954,14 +2588,6 @@ module Aws::LocationService
2954
2588
  include Aws::Structure
2955
2589
  end
2956
2590
 
2957
- # @note When making an API call, you may pass GetDevicePositionRequest
2958
- # data as a hash:
2959
- #
2960
- # {
2961
- # device_id: "Id", # required
2962
- # tracker_name: "ResourceName", # required
2963
- # }
2964
- #
2965
2591
  # @!attribute [rw] device_id
2966
2592
  # The device whose position you want to retrieve.
2967
2593
  # @return [String]
@@ -3026,14 +2652,6 @@ module Aws::LocationService
3026
2652
  include Aws::Structure
3027
2653
  end
3028
2654
 
3029
- # @note When making an API call, you may pass GetGeofenceRequest
3030
- # data as a hash:
3031
- #
3032
- # {
3033
- # collection_name: "ResourceName", # required
3034
- # geofence_id: "Id", # required
3035
- # }
3036
- #
3037
2655
  # @!attribute [rw] collection_name
3038
2656
  # The geofence collection storing the target geofence.
3039
2657
  # @return [String]
@@ -3105,15 +2723,6 @@ module Aws::LocationService
3105
2723
  include Aws::Structure
3106
2724
  end
3107
2725
 
3108
- # @note When making an API call, you may pass GetMapGlyphsRequest
3109
- # data as a hash:
3110
- #
3111
- # {
3112
- # font_stack: "String", # required
3113
- # font_unicode_range: "GetMapGlyphsRequestFontUnicodeRangeString", # required
3114
- # map_name: "ResourceName", # required
3115
- # }
3116
- #
3117
2726
  # @!attribute [rw] font_stack
3118
2727
  # A comma-separated list of fonts to load glyphs from in order of
3119
2728
  # preference. For example, `Noto Sans Regular, Arial Unicode`.
@@ -3145,10 +2754,35 @@ module Aws::LocationService
3145
2754
  # `Fira GO Map Bold` \| `Noto Sans CJK JP Bold` \| `Noto Sans CJK JP
3146
2755
  # Light` \| `Noto Sans CJK JP Regular`
3147
2756
  #
2757
+ # Valid font stacks for [GrabMaps][3] styles:
2758
+ #
2759
+ # * VectorGrabStandardLight, VectorGrabStandardDark – `Noto Sans
2760
+ # Regular` \| `Noto Sans Medium` \| `Noto Sans Bold`
2761
+ #
2762
+ # ^
2763
+ #
2764
+ # Valid font stacks for [Open Data (Preview)][4] styles:
2765
+ #
2766
+ # * VectorOpenDataStandardLight – `Amazon Ember Regular,Noto Sans
2767
+ # Regular` \| `Amazon Ember Bold,Noto Sans Bold` \| `Amazon Ember
2768
+ # Medium,Noto Sans Medium` \| `Amazon Ember Regular Italic,Noto Sans
2769
+ # Italic` \| `Amazon Ember Condensed RC Regular,Noto Sans Regular`
2770
+ # \| `Amazon Ember Condensed RC Bold,Noto Sans Bold`
2771
+ #
2772
+ # ^
2773
+ #
2774
+ # <note markdown="1"> The fonts used by `VectorOpenDataStandardLight` are combined fonts
2775
+ # that use `Amazon Ember` for most glyphs but `Noto Sans` for glyphs
2776
+ # unsupported by `Amazon Ember`.
2777
+ #
2778
+ # </note>
2779
+ #
3148
2780
  #
3149
2781
  #
3150
2782
  # [1]: https://docs.aws.amazon.com/location/latest/developerguide/esri.html
3151
2783
  # [2]: https://docs.aws.amazon.com/location/latest/developerguide/HERE.html
2784
+ # [3]: https://docs.aws.amazon.com/location/latest/developerguide/grab.html
2785
+ # [4]: https://docs.aws.amazon.com/location/latest/developerguide/open-data.html
3152
2786
  # @return [String]
3153
2787
  #
3154
2788
  # @!attribute [rw] font_unicode_range
@@ -3189,14 +2823,6 @@ module Aws::LocationService
3189
2823
  include Aws::Structure
3190
2824
  end
3191
2825
 
3192
- # @note When making an API call, you may pass GetMapSpritesRequest
3193
- # data as a hash:
3194
- #
3195
- # {
3196
- # file_name: "GetMapSpritesRequestFileNameString", # required
3197
- # map_name: "ResourceName", # required
3198
- # }
3199
- #
3200
2826
  # @!attribute [rw] file_name
3201
2827
  # The name of the sprite file. Use the following file names for the
3202
2828
  # sprite sheet:
@@ -3245,13 +2871,6 @@ module Aws::LocationService
3245
2871
  include Aws::Structure
3246
2872
  end
3247
2873
 
3248
- # @note When making an API call, you may pass GetMapStyleDescriptorRequest
3249
- # data as a hash:
3250
- #
3251
- # {
3252
- # map_name: "ResourceName", # required
3253
- # }
3254
- #
3255
2874
  # @!attribute [rw] map_name
3256
2875
  # The map resource to retrieve the style descriptor from.
3257
2876
  # @return [String]
@@ -3282,16 +2901,6 @@ module Aws::LocationService
3282
2901
  include Aws::Structure
3283
2902
  end
3284
2903
 
3285
- # @note When making an API call, you may pass GetMapTileRequest
3286
- # data as a hash:
3287
- #
3288
- # {
3289
- # map_name: "ResourceName", # required
3290
- # x: "GetMapTileRequestXString", # required
3291
- # y: "GetMapTileRequestYString", # required
3292
- # z: "GetMapTileRequestZString", # required
3293
- # }
3294
- #
3295
2904
  # @!attribute [rw] map_name
3296
2905
  # The map resource to retrieve the map tiles from.
3297
2906
  # @return [String]
@@ -3337,15 +2946,6 @@ module Aws::LocationService
3337
2946
  include Aws::Structure
3338
2947
  end
3339
2948
 
3340
- # @note When making an API call, you may pass GetPlaceRequest
3341
- # data as a hash:
3342
- #
3343
- # {
3344
- # index_name: "ResourceName", # required
3345
- # language: "LanguageTag",
3346
- # place_id: "PlaceId", # required
3347
- # }
3348
- #
3349
2949
  # @!attribute [rw] index_name
3350
2950
  # The name of the place index resource that you want to use for the
3351
2951
  # search.
@@ -3532,15 +3132,6 @@ module Aws::LocationService
3532
3132
  include Aws::Structure
3533
3133
  end
3534
3134
 
3535
- # @note When making an API call, you may pass ListDevicePositionsRequest
3536
- # data as a hash:
3537
- #
3538
- # {
3539
- # max_results: 1,
3540
- # next_token: "Token",
3541
- # tracker_name: "ResourceName", # required
3542
- # }
3543
- #
3544
3135
  # @!attribute [rw] max_results
3545
3136
  # An optional limit for the number of entries returned in a single
3546
3137
  # call.
@@ -3632,14 +3223,6 @@ module Aws::LocationService
3632
3223
  include Aws::Structure
3633
3224
  end
3634
3225
 
3635
- # @note When making an API call, you may pass ListGeofenceCollectionsRequest
3636
- # data as a hash:
3637
- #
3638
- # {
3639
- # max_results: 1,
3640
- # next_token: "Token",
3641
- # }
3642
- #
3643
3226
  # @!attribute [rw] max_results
3644
3227
  # An optional limit for the number of resources returned in a single
3645
3228
  # call.
@@ -3788,15 +3371,6 @@ module Aws::LocationService
3788
3371
  include Aws::Structure
3789
3372
  end
3790
3373
 
3791
- # @note When making an API call, you may pass ListGeofencesRequest
3792
- # data as a hash:
3793
- #
3794
- # {
3795
- # collection_name: "ResourceName", # required
3796
- # max_results: 1,
3797
- # next_token: "Token",
3798
- # }
3799
- #
3800
3374
  # @!attribute [rw] collection_name
3801
3375
  # The name of the geofence collection storing the list of geofences.
3802
3376
  # @return [String]
@@ -3845,14 +3419,6 @@ module Aws::LocationService
3845
3419
  include Aws::Structure
3846
3420
  end
3847
3421
 
3848
- # @note When making an API call, you may pass ListMapsRequest
3849
- # data as a hash:
3850
- #
3851
- # {
3852
- # max_results: 1,
3853
- # next_token: "Token",
3854
- # }
3855
- #
3856
3422
  # @!attribute [rw] max_results
3857
3423
  # An optional limit for the number of resources returned in a single
3858
3424
  # call.
@@ -3945,14 +3511,6 @@ module Aws::LocationService
3945
3511
  include Aws::Structure
3946
3512
  end
3947
3513
 
3948
- # @note When making an API call, you may pass ListPlaceIndexesRequest
3949
- # data as a hash:
3950
- #
3951
- # {
3952
- # max_results: 1,
3953
- # next_token: "Token",
3954
- # }
3955
- #
3956
3514
  # @!attribute [rw] max_results
3957
3515
  # An optional limit for the maximum number of results returned in a
3958
3516
  # single call.
@@ -4013,6 +3571,8 @@ module Aws::LocationService
4013
3571
  #
4014
3572
  # * `Esri`
4015
3573
  #
3574
+ # * `Grab`
3575
+ #
4016
3576
  # * `Here`
4017
3577
  #
4018
3578
  # For more information about data providers, see [Amazon Location
@@ -4057,14 +3617,6 @@ module Aws::LocationService
4057
3617
  include Aws::Structure
4058
3618
  end
4059
3619
 
4060
- # @note When making an API call, you may pass ListRouteCalculatorsRequest
4061
- # data as a hash:
4062
- #
4063
- # {
4064
- # max_results: 1,
4065
- # next_token: "Token",
4066
- # }
4067
- #
4068
3620
  # @!attribute [rw] max_results
4069
3621
  # An optional maximum number of results returned in a single call.
4070
3622
  #
@@ -4132,6 +3684,8 @@ module Aws::LocationService
4132
3684
  #
4133
3685
  # * `Esri`
4134
3686
  #
3687
+ # * `Grab`
3688
+ #
4135
3689
  # * `Here`
4136
3690
  #
4137
3691
  # For more information about data providers, see [Amazon Location
@@ -4176,13 +3730,6 @@ module Aws::LocationService
4176
3730
  include Aws::Structure
4177
3731
  end
4178
3732
 
4179
- # @note When making an API call, you may pass ListTagsForResourceRequest
4180
- # data as a hash:
4181
- #
4182
- # {
4183
- # resource_arn: "Arn", # required
4184
- # }
4185
- #
4186
3733
  # @!attribute [rw] resource_arn
4187
3734
  # The Amazon Resource Name (ARN) of the resource whose tags you want
4188
3735
  # to retrieve.
@@ -4218,15 +3765,6 @@ module Aws::LocationService
4218
3765
  include Aws::Structure
4219
3766
  end
4220
3767
 
4221
- # @note When making an API call, you may pass ListTrackerConsumersRequest
4222
- # data as a hash:
4223
- #
4224
- # {
4225
- # max_results: 1,
4226
- # next_token: "Token",
4227
- # tracker_name: "ResourceName", # required
4228
- # }
4229
- #
4230
3768
  # @!attribute [rw] max_results
4231
3769
  # An optional limit for the number of resources returned in a single
4232
3770
  # call.
@@ -4277,14 +3815,6 @@ module Aws::LocationService
4277
3815
  include Aws::Structure
4278
3816
  end
4279
3817
 
4280
- # @note When making an API call, you may pass ListTrackersRequest
4281
- # data as a hash:
4282
- #
4283
- # {
4284
- # max_results: 1,
4285
- # next_token: "Token",
4286
- # }
4287
- #
4288
3818
  # @!attribute [rw] max_results
4289
3819
  # An optional limit for the number of resources returned in a single
4290
3820
  # call.
@@ -4381,13 +3911,6 @@ module Aws::LocationService
4381
3911
 
4382
3912
  # Specifies the map tile style selected from an available provider.
4383
3913
  #
4384
- # @note When making an API call, you may pass MapConfiguration
4385
- # data as a hash:
4386
- #
4387
- # {
4388
- # style: "MapStyle", # required
4389
- # }
4390
- #
4391
3914
  # @!attribute [rw] style
4392
3915
  # Specifies the map style selected from an available data provider.
4393
3916
  #
@@ -4458,10 +3981,43 @@ module Aws::LocationService
4458
3981
  #
4459
3982
  # </note>
4460
3983
  #
3984
+ # Valid [GrabMaps map styles][3]\:
3985
+ #
3986
+ # * `VectorGrabStandardLight` – The Grab Standard Light map style
3987
+ # provides a basemap with detailed land use coloring, area names,
3988
+ # roads, landmarks, and points of interest covering Southeast Asia.
3989
+ #
3990
+ # * `VectorGrabStandardDark` – The Grab Standard Dark map style
3991
+ # provides a dark variation of the standard basemap covering
3992
+ # Southeast Asia.
3993
+ #
3994
+ # <note markdown="1"> Grab provides maps only for countries in Southeast Asia, and is only
3995
+ # available in the Asia Pacific (Singapore) Region (`ap-southeast-1`).
3996
+ # For more information, see [GrabMaps countries and area covered][4].
3997
+ #
3998
+ # </note>
3999
+ #
4000
+ # Valid [Open Data (Preview) map styles][5]\:
4001
+ #
4002
+ # * `VectorOpenDataStandardLight` – The Open Data Standard Light
4003
+ # (preview) map style provides a detailed basemap for the world
4004
+ # suitable for website and mobile application use. The map includes
4005
+ # highways major roads, minor roads, railways, water features,
4006
+ # cities, parks, landmarks, building footprints, and administrative
4007
+ # boundaries.
4008
+ #
4009
+ # Open Data maps is in preview. We may add, change, or remove
4010
+ # features before announcing general availability. For more
4011
+ # information, see [Open Data is in preview release][6].
4012
+ #
4461
4013
  #
4462
4014
  #
4463
4015
  # [1]: https://docs.aws.amazon.com/location/latest/developerguide/esri.html
4464
4016
  # [2]: https://docs.aws.amazon.com/location/latest/developerguide/HERE.html
4017
+ # [3]: https://docs.aws.amazon.com/location/latest/developerguide/grab.html
4018
+ # [4]: https://docs.aws.amazon.com/location/latest/developerguide/grab.html#grab-coverage-area
4019
+ # [5]: https://docs.aws.amazon.com/location/latest/developerguide/open-data.html
4020
+ # [6]: https://docs.aws.amazon.com/location/latest/developerguide/open-data.html#open-data-preview
4465
4021
  # @return [String]
4466
4022
  #
4467
4023
  # @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/MapConfiguration AWS API Documentation
@@ -4538,7 +4094,7 @@ module Aws::LocationService
4538
4094
  # @return [String]
4539
4095
  #
4540
4096
  # @!attribute [rw] sub_region
4541
- # A country, or an area that's part of a larger region. For example,
4097
+ # A county, or an area that's part of a larger region. For example,
4542
4098
  # `Metro Vancouver`.
4543
4099
  # @return [String]
4544
4100
  #
@@ -4608,13 +4164,6 @@ module Aws::LocationService
4608
4164
 
4609
4165
  # Defines the level of certainty of the position.
4610
4166
  #
4611
- # @note When making an API call, you may pass PositionalAccuracy
4612
- # data as a hash:
4613
- #
4614
- # {
4615
- # horizontal: 1.0, # required
4616
- # }
4617
- #
4618
4167
  # @!attribute [rw] horizontal
4619
4168
  # Estimated maximum distance, in meters, between the measured position
4620
4169
  # and the true position of a device, along the Earth's surface.
@@ -4628,25 +4177,6 @@ module Aws::LocationService
4628
4177
  include Aws::Structure
4629
4178
  end
4630
4179
 
4631
- # @note When making an API call, you may pass PutGeofenceRequest
4632
- # data as a hash:
4633
- #
4634
- # {
4635
- # collection_name: "ResourceName", # required
4636
- # geofence_id: "Id", # required
4637
- # geometry: { # required
4638
- # circle: {
4639
- # center: [1.0], # required
4640
- # radius: 1.0, # required
4641
- # },
4642
- # polygon: [
4643
- # [
4644
- # [1.0],
4645
- # ],
4646
- # ],
4647
- # },
4648
- # }
4649
- #
4650
4180
  # @!attribute [rw] collection_name
4651
4181
  # The geofence collection to store the geofence in.
4652
4182
  # @return [String]
@@ -4829,7 +4359,8 @@ module Aws::LocationService
4829
4359
  # `GetPlace` operation to find the place again later.
4830
4360
  #
4831
4361
  # <note markdown="1"> For `SearchPlaceIndexForPosition` operations, the `PlaceId` is
4832
- # returned only by place indexes that use HERE as a data provider.
4362
+ # returned only by place indexes that use HERE or Grab as a data
4363
+ # provider.
4833
4364
  #
4834
4365
  # </note>
4835
4366
  # @return [String]
@@ -4852,7 +4383,8 @@ module Aws::LocationService
4852
4383
  # `GetPlace` operation to find the place again later.
4853
4384
  #
4854
4385
  # <note markdown="1"> For `SearchPlaceIndexForSuggestions` operations, the `PlaceId` is
4855
- # returned by place indexes that use HERE or Esri as data providers.
4386
+ # returned by place indexes that use Esri, Grab, or HERE as data
4387
+ # providers.
4856
4388
  #
4857
4389
  # </note>
4858
4390
  # @return [String]
@@ -4894,7 +4426,7 @@ module Aws::LocationService
4894
4426
  # `GetPlace` operation to find the place again later.
4895
4427
  #
4896
4428
  # <note markdown="1"> For `SearchPlaceIndexForText` operations, the `PlaceId` is returned
4897
- # only by place indexes that use HERE as a data provider.
4429
+ # only by place indexes that use HERE or Grab as a data provider.
4898
4430
  #
4899
4431
  # </note>
4900
4432
  # @return [String]
@@ -4905,7 +4437,7 @@ module Aws::LocationService
4905
4437
  # (including house number, street, city, country/region, and postal
4906
4438
  # code), the relevance score is closer to 1.
4907
4439
  #
4908
- # Returned only when the partner selected is Esri.
4440
+ # Returned only when the partner selected is Esri or Grab.
4909
4441
  # @return [Float]
4910
4442
  #
4911
4443
  # @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/SearchForTextResult AWS API Documentation
@@ -4919,16 +4451,6 @@ module Aws::LocationService
4919
4451
  include Aws::Structure
4920
4452
  end
4921
4453
 
4922
- # @note When making an API call, you may pass SearchPlaceIndexForPositionRequest
4923
- # data as a hash:
4924
- #
4925
- # {
4926
- # index_name: "ResourceName", # required
4927
- # language: "LanguageTag",
4928
- # max_results: 1,
4929
- # position: [1.0], # required
4930
- # }
4931
- #
4932
4454
  # @!attribute [rw] index_name
4933
4455
  # The name of the place index resource you want to use for the search.
4934
4456
  # @return [String]
@@ -5015,6 +4537,8 @@ module Aws::LocationService
5015
4537
  #
5016
4538
  # * Esri
5017
4539
  #
4540
+ # * Grab
4541
+ #
5018
4542
  # * Here
5019
4543
  #
5020
4544
  # For more information about data providers, see [Amazon Location
@@ -5057,19 +4581,6 @@ module Aws::LocationService
5057
4581
  include Aws::Structure
5058
4582
  end
5059
4583
 
5060
- # @note When making an API call, you may pass SearchPlaceIndexForSuggestionsRequest
5061
- # data as a hash:
5062
- #
5063
- # {
5064
- # bias_position: [1.0],
5065
- # filter_b_box: [1.0],
5066
- # filter_countries: ["CountryCode"],
5067
- # index_name: "ResourceName", # required
5068
- # language: "LanguageTag",
5069
- # max_results: 1,
5070
- # text: "SearchPlaceIndexForSuggestionsRequestTextString", # required
5071
- # }
5072
- #
5073
4584
  # @!attribute [rw] bias_position
5074
4585
  # An optional parameter that indicates a preference for place
5075
4586
  # suggestions that are closer to a specified position.
@@ -5218,6 +4729,8 @@ module Aws::LocationService
5218
4729
  #
5219
4730
  # * Esri
5220
4731
  #
4732
+ # * Grab
4733
+ #
5221
4734
  # * Here
5222
4735
  #
5223
4736
  # For more information about data providers, see [Amazon Location
@@ -5269,19 +4782,6 @@ module Aws::LocationService
5269
4782
  include Aws::Structure
5270
4783
  end
5271
4784
 
5272
- # @note When making an API call, you may pass SearchPlaceIndexForTextRequest
5273
- # data as a hash:
5274
- #
5275
- # {
5276
- # bias_position: [1.0],
5277
- # filter_b_box: [1.0],
5278
- # filter_countries: ["CountryCode"],
5279
- # index_name: "ResourceName", # required
5280
- # language: "LanguageTag",
5281
- # max_results: 1,
5282
- # text: "SearchPlaceIndexForTextRequestTextString", # required
5283
- # }
5284
- #
5285
4785
  # @!attribute [rw] bias_position
5286
4786
  # An optional parameter that indicates a preference for places that
5287
4787
  # are closer to a specified position.
@@ -5434,6 +4934,8 @@ module Aws::LocationService
5434
4934
  #
5435
4935
  # * Esri
5436
4936
  #
4937
+ # * Grab
4938
+ #
5437
4939
  # * Here
5438
4940
  #
5439
4941
  # For more information about data providers, see [Amazon Location
@@ -5562,16 +5064,6 @@ module Aws::LocationService
5562
5064
  include Aws::Structure
5563
5065
  end
5564
5066
 
5565
- # @note When making an API call, you may pass TagResourceRequest
5566
- # data as a hash:
5567
- #
5568
- # {
5569
- # resource_arn: "Arn", # required
5570
- # tags: { # required
5571
- # "TagKey" => "TagValue",
5572
- # },
5573
- # }
5574
- #
5575
5067
  # @!attribute [rw] resource_arn
5576
5068
  # The Amazon Resource Name (ARN) of the resource whose tags you want
5577
5069
  # to update.
@@ -5662,16 +5154,6 @@ module Aws::LocationService
5662
5154
  # allow the specified dimensions for requests that specify `TravelMode`
5663
5155
  # as `Truck`.
5664
5156
  #
5665
- # @note When making an API call, you may pass TruckDimensions
5666
- # data as a hash:
5667
- #
5668
- # {
5669
- # height: 1.0,
5670
- # length: 1.0,
5671
- # unit: "Meters", # accepts Meters, Feet
5672
- # width: 1.0,
5673
- # }
5674
- #
5675
5157
  # @!attribute [rw] height
5676
5158
  # The height of the truck.
5677
5159
  #
@@ -5732,14 +5214,6 @@ module Aws::LocationService
5732
5214
  # avoid roads that can't support or allow the total weight for requests
5733
5215
  # that specify `TravelMode` as `Truck`.
5734
5216
  #
5735
- # @note When making an API call, you may pass TruckWeight
5736
- # data as a hash:
5737
- #
5738
- # {
5739
- # total: 1.0,
5740
- # unit: "Kilograms", # accepts Kilograms, Pounds
5741
- # }
5742
- #
5743
5217
  # @!attribute [rw] total
5744
5218
  # The total weight of the truck.
5745
5219
  #
@@ -5763,14 +5237,6 @@ module Aws::LocationService
5763
5237
  include Aws::Structure
5764
5238
  end
5765
5239
 
5766
- # @note When making an API call, you may pass UntagResourceRequest
5767
- # data as a hash:
5768
- #
5769
- # {
5770
- # resource_arn: "Arn", # required
5771
- # tag_keys: ["String"], # required
5772
- # }
5773
- #
5774
5240
  # @!attribute [rw] resource_arn
5775
5241
  # The Amazon Resource Name (ARN) of the resource from which you want
5776
5242
  # to remove tags.
@@ -5798,16 +5264,6 @@ module Aws::LocationService
5798
5264
  #
5799
5265
  class UntagResourceResponse < Aws::EmptyStructure; end
5800
5266
 
5801
- # @note When making an API call, you may pass UpdateGeofenceCollectionRequest
5802
- # data as a hash:
5803
- #
5804
- # {
5805
- # collection_name: "ResourceName", # required
5806
- # description: "ResourceDescription",
5807
- # pricing_plan: "RequestBasedUsage", # accepts RequestBasedUsage, MobileAssetTracking, MobileAssetManagement
5808
- # pricing_plan_data_source: "String",
5809
- # }
5810
- #
5811
5267
  # @!attribute [rw] collection_name
5812
5268
  # The name of the geofence collection to update.
5813
5269
  # @return [String]
@@ -5869,15 +5325,6 @@ module Aws::LocationService
5869
5325
  include Aws::Structure
5870
5326
  end
5871
5327
 
5872
- # @note When making an API call, you may pass UpdateMapRequest
5873
- # data as a hash:
5874
- #
5875
- # {
5876
- # description: "ResourceDescription",
5877
- # map_name: "ResourceName", # required
5878
- # pricing_plan: "RequestBasedUsage", # accepts RequestBasedUsage, MobileAssetTracking, MobileAssetManagement
5879
- # }
5880
- #
5881
5328
  # @!attribute [rw] description
5882
5329
  # Updates the description for the map resource.
5883
5330
  # @return [String]
@@ -5933,18 +5380,6 @@ module Aws::LocationService
5933
5380
  include Aws::Structure
5934
5381
  end
5935
5382
 
5936
- # @note When making an API call, you may pass UpdatePlaceIndexRequest
5937
- # data as a hash:
5938
- #
5939
- # {
5940
- # data_source_configuration: {
5941
- # intended_use: "SingleUse", # accepts SingleUse, Storage
5942
- # },
5943
- # description: "ResourceDescription",
5944
- # index_name: "ResourceName", # required
5945
- # pricing_plan: "RequestBasedUsage", # accepts RequestBasedUsage, MobileAssetTracking, MobileAssetManagement
5946
- # }
5947
- #
5948
5383
  # @!attribute [rw] data_source_configuration
5949
5384
  # Updates the data storage option for the place index resource.
5950
5385
  # @return [Types::DataSourceConfiguration]
@@ -6006,15 +5441,6 @@ module Aws::LocationService
6006
5441
  include Aws::Structure
6007
5442
  end
6008
5443
 
6009
- # @note When making an API call, you may pass UpdateRouteCalculatorRequest
6010
- # data as a hash:
6011
- #
6012
- # {
6013
- # calculator_name: "ResourceName", # required
6014
- # description: "ResourceDescription",
6015
- # pricing_plan: "RequestBasedUsage", # accepts RequestBasedUsage, MobileAssetTracking, MobileAssetManagement
6016
- # }
6017
- #
6018
5444
  # @!attribute [rw] calculator_name
6019
5445
  # The name of the route calculator resource to update.
6020
5446
  # @return [String]
@@ -6071,17 +5497,6 @@ module Aws::LocationService
6071
5497
  include Aws::Structure
6072
5498
  end
6073
5499
 
6074
- # @note When making an API call, you may pass UpdateTrackerRequest
6075
- # data as a hash:
6076
- #
6077
- # {
6078
- # description: "ResourceDescription",
6079
- # position_filtering: "TimeBased", # accepts TimeBased, DistanceBased, AccuracyBased
6080
- # pricing_plan: "RequestBasedUsage", # accepts RequestBasedUsage, MobileAssetTracking, MobileAssetManagement
6081
- # pricing_plan_data_source: "String",
6082
- # tracker_name: "ResourceName", # required
6083
- # }
6084
- #
6085
5500
  # @!attribute [rw] description
6086
5501
  # Updates the description for the tracker resource.
6087
5502
  # @return [String]