aws-sdk-locationservice 1.37.0 → 1.39.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a7da4601e63dbf25cd99e72f304a0b17882bb6e424018ecd6f7a3a6ee8a087b6
4
- data.tar.gz: f1ec2e3374c2029200b2ece252d28be6f2abf94a33a123ccec8be8902ab18746
3
+ metadata.gz: 90f6148a2e125afaa3bc257f879399f25aaea90efb30981dd3c990d0ba0650d4
4
+ data.tar.gz: d8c7e6bceb391a3774f2549176c364e8803f1e423a6756323778183c031eef84
5
5
  SHA512:
6
- metadata.gz: 16bd7a2bec6fb24df9142b671e986401a94c999eb0aed289869e09a09d938837d5c653429866758b820c17e6cf7a29d912dbdc2954d35ea06069ea52343bc0b2
7
- data.tar.gz: 599b7cdd41d4a1c8948a6a0cc6d9a59c7423a5a8f7c785806235d1284da847cf25ac1ff34a6e83a1d4765bf7e1f9d08628a4fe2bd768d8ff788cd98a7e995753
6
+ metadata.gz: 6d6766fe572bbe84792ac46d7c71775dd476e6ff9ab8b13f0983559a6729ea51c011c6ecb3038aba0b7297613e4e38d5b001aea76de7a7937a96acf177b61535
7
+ data.tar.gz: a048b27689ad3b7e6f0a862b97a68d05fddb88d09ce596147a467fae93bbed29e644c27161d0e0bdfd02e8d80666f0cbf35aef459e947ab01f908fb6f6834afa
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.39.0 (2023-10-12)
5
+ ------------------
6
+
7
+ * Feature - This release adds endpoint updates for all AWS Location resource operations.
8
+
9
+ 1.38.0 (2023-10-03)
10
+ ------------------
11
+
12
+ * Feature - Amazon Location Service adds support for bounding polygon queries. Additionally, the GeofenceCount field has been added to the DescribeGeofenceCollection API response.
13
+
4
14
  1.37.0 (2023-09-27)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.37.0
1
+ 1.39.0
@@ -1888,6 +1888,30 @@ module Aws::LocationService
1888
1888
  #
1889
1889
  # </note>
1890
1890
  #
1891
+ # @option params [Boolean] :kms_key_enable_geospatial_queries
1892
+ # Enables `GeospatialQueries` for a tracker that uses a [Amazon Web
1893
+ # Services KMS customer managed key][1].
1894
+ #
1895
+ # This parameter is only used if you are using a KMS customer managed
1896
+ # key.
1897
+ #
1898
+ # <note markdown="1"> If you wish to encrypt your data using your own KMS customer managed
1899
+ # key, then the Bounding Polygon Queries feature will be disabled by
1900
+ # default. This is because by using this feature, a representation of
1901
+ # your device positions will not be encrypted using the your KMS managed
1902
+ # key. The exact device position, however; is still encrypted using your
1903
+ # managed key.
1904
+ #
1905
+ # You can choose to opt-in to the Bounding Polygon Quseries feature.
1906
+ # This is done by setting the `KmsKeyEnableGeospatialQueries` parameter
1907
+ # to true when creating or updating a Tracker.
1908
+ #
1909
+ # </note>
1910
+ #
1911
+ #
1912
+ #
1913
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html
1914
+ #
1891
1915
  # @option params [String] :kms_key_id
1892
1916
  # A key identifier for an [Amazon Web Services KMS customer managed
1893
1917
  # key][1]. Enter a key ID, key ARN, alias name, or alias ARN.
@@ -1979,6 +2003,7 @@ module Aws::LocationService
1979
2003
  # resp = client.create_tracker({
1980
2004
  # description: "ResourceDescription",
1981
2005
  # event_bridge_enabled: false,
2006
+ # kms_key_enable_geospatial_queries: false,
1982
2007
  # kms_key_id: "KmsKeyId",
1983
2008
  # position_filtering: "TimeBased", # accepts TimeBased, DistanceBased, AccuracyBased
1984
2009
  # pricing_plan: "RequestBasedUsage", # accepts RequestBasedUsage, MobileAssetTracking, MobileAssetManagement
@@ -2174,6 +2199,7 @@ module Aws::LocationService
2174
2199
  # * {Types::DescribeGeofenceCollectionResponse#collection_name #collection_name} => String
2175
2200
  # * {Types::DescribeGeofenceCollectionResponse#create_time #create_time} => Time
2176
2201
  # * {Types::DescribeGeofenceCollectionResponse#description #description} => String
2202
+ # * {Types::DescribeGeofenceCollectionResponse#geofence_count #geofence_count} => Integer
2177
2203
  # * {Types::DescribeGeofenceCollectionResponse#kms_key_id #kms_key_id} => String
2178
2204
  # * {Types::DescribeGeofenceCollectionResponse#pricing_plan #pricing_plan} => String
2179
2205
  # * {Types::DescribeGeofenceCollectionResponse#pricing_plan_data_source #pricing_plan_data_source} => String
@@ -2192,6 +2218,7 @@ module Aws::LocationService
2192
2218
  # resp.collection_name #=> String
2193
2219
  # resp.create_time #=> Time
2194
2220
  # resp.description #=> String
2221
+ # resp.geofence_count #=> Integer
2195
2222
  # resp.kms_key_id #=> String
2196
2223
  # resp.pricing_plan #=> String, one of "RequestBasedUsage", "MobileAssetTracking", "MobileAssetManagement"
2197
2224
  # resp.pricing_plan_data_source #=> String
@@ -2402,6 +2429,7 @@ module Aws::LocationService
2402
2429
  # * {Types::DescribeTrackerResponse#create_time #create_time} => Time
2403
2430
  # * {Types::DescribeTrackerResponse#description #description} => String
2404
2431
  # * {Types::DescribeTrackerResponse#event_bridge_enabled #event_bridge_enabled} => Boolean
2432
+ # * {Types::DescribeTrackerResponse#kms_key_enable_geospatial_queries #kms_key_enable_geospatial_queries} => Boolean
2405
2433
  # * {Types::DescribeTrackerResponse#kms_key_id #kms_key_id} => String
2406
2434
  # * {Types::DescribeTrackerResponse#position_filtering #position_filtering} => String
2407
2435
  # * {Types::DescribeTrackerResponse#pricing_plan #pricing_plan} => String
@@ -2422,6 +2450,7 @@ module Aws::LocationService
2422
2450
  # resp.create_time #=> Time
2423
2451
  # resp.description #=> String
2424
2452
  # resp.event_bridge_enabled #=> Boolean
2453
+ # resp.kms_key_enable_geospatial_queries #=> Boolean
2425
2454
  # resp.kms_key_id #=> String
2426
2455
  # resp.position_filtering #=> String, one of "TimeBased", "DistanceBased", "AccuracyBased"
2427
2456
  # resp.pricing_plan #=> String, one of "RequestBasedUsage", "MobileAssetTracking", "MobileAssetManagement"
@@ -2683,7 +2712,7 @@ module Aws::LocationService
2683
2712
  # A comma-separated list of fonts to load glyphs from in order of
2684
2713
  # preference. For example, `Noto Sans Regular, Arial Unicode`.
2685
2714
  #
2686
- # Valid fonts stacks for [Esri][1] styles:
2715
+ # Valid font stacks for [Esri][1] styles:
2687
2716
  #
2688
2717
  # * VectorEsriDarkGrayCanvas – `Ubuntu Medium Italic` \| `Ubuntu Medium`
2689
2718
  # \| `Ubuntu Italic` \| `Ubuntu Regular` \| `Ubuntu Bold`
@@ -3056,6 +3085,9 @@ module Aws::LocationService
3056
3085
 
3057
3086
  # A batch request to retrieve all device positions.
3058
3087
  #
3088
+ # @option params [Types::TrackingFilterGeometry] :filter_geometry
3089
+ # The geomerty used to filter device positions.
3090
+ #
3059
3091
  # @option params [Integer] :max_results
3060
3092
  # An optional limit for the number of entries returned in a single call.
3061
3093
  #
@@ -3080,6 +3112,13 @@ module Aws::LocationService
3080
3112
  # @example Request syntax with placeholder values
3081
3113
  #
3082
3114
  # resp = client.list_device_positions({
3115
+ # filter_geometry: {
3116
+ # polygon: [
3117
+ # [
3118
+ # [1.0],
3119
+ # ],
3120
+ # ],
3121
+ # },
3083
3122
  # max_results: 1,
3084
3123
  # next_token: "Token",
3085
3124
  # tracker_name: "ResourceName", # required
@@ -4456,6 +4495,17 @@ module Aws::LocationService
4456
4495
  #
4457
4496
  # </note>
4458
4497
  #
4498
+ # @option params [Boolean] :kms_key_enable_geospatial_queries
4499
+ # Enables `GeospatialQueries` for a tracker that uses a [Amazon Web
4500
+ # Services KMS customer managed key][1].
4501
+ #
4502
+ # This parameter is only used if you are using a KMS customer managed
4503
+ # key.
4504
+ #
4505
+ #
4506
+ #
4507
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html
4508
+ #
4459
4509
  # @option params [String] :position_filtering
4460
4510
  # Updates the position filtering for the tracker resource.
4461
4511
  #
@@ -4505,6 +4555,7 @@ module Aws::LocationService
4505
4555
  # resp = client.update_tracker({
4506
4556
  # description: "ResourceDescription",
4507
4557
  # event_bridge_enabled: false,
4558
+ # kms_key_enable_geospatial_queries: false,
4508
4559
  # position_filtering: "TimeBased", # accepts TimeBased, DistanceBased, AccuracyBased
4509
4560
  # pricing_plan: "RequestBasedUsage", # accepts RequestBasedUsage, MobileAssetTracking, MobileAssetManagement
4510
4561
  # pricing_plan_data_source: "String",
@@ -4539,7 +4590,7 @@ module Aws::LocationService
4539
4590
  params: params,
4540
4591
  config: config)
4541
4592
  context[:gem_name] = 'aws-sdk-locationservice'
4542
- context[:gem_version] = '1.37.0'
4593
+ context[:gem_version] = '1.39.0'
4543
4594
  Seahorse::Client::Request.new(handlers, context)
4544
4595
  end
4545
4596
 
@@ -114,6 +114,7 @@ module Aws::LocationService
114
114
  DeleteTrackerResponse = Shapes::StructureShape.new(name: 'DeleteTrackerResponse')
115
115
  DescribeGeofenceCollectionRequest = Shapes::StructureShape.new(name: 'DescribeGeofenceCollectionRequest')
116
116
  DescribeGeofenceCollectionResponse = Shapes::StructureShape.new(name: 'DescribeGeofenceCollectionResponse')
117
+ DescribeGeofenceCollectionResponseGeofenceCountInteger = Shapes::IntegerShape.new(name: 'DescribeGeofenceCollectionResponseGeofenceCountInteger')
117
118
  DescribeKeyRequest = Shapes::StructureShape.new(name: 'DescribeKeyRequest')
118
119
  DescribeKeyResponse = Shapes::StructureShape.new(name: 'DescribeKeyResponse')
119
120
  DescribeMapRequest = Shapes::StructureShape.new(name: 'DescribeMapRequest')
@@ -288,6 +289,7 @@ module Aws::LocationService
288
289
  TimeZone = Shapes::StructureShape.new(name: 'TimeZone')
289
290
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp', timestampFormat: "iso8601")
290
291
  Token = Shapes::StringShape.new(name: 'Token')
292
+ TrackingFilterGeometry = Shapes::StructureShape.new(name: 'TrackingFilterGeometry')
291
293
  TravelMode = Shapes::StringShape.new(name: 'TravelMode')
292
294
  TruckDimensions = Shapes::StructureShape.new(name: 'TruckDimensions')
293
295
  TruckDimensionsHeightDouble = Shapes::FloatShape.new(name: 'TruckDimensionsHeightDouble')
@@ -596,6 +598,7 @@ module Aws::LocationService
596
598
 
597
599
  CreateTrackerRequest.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
598
600
  CreateTrackerRequest.add_member(:event_bridge_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "EventBridgeEnabled"))
601
+ CreateTrackerRequest.add_member(:kms_key_enable_geospatial_queries, Shapes::ShapeRef.new(shape: Boolean, location_name: "KmsKeyEnableGeospatialQueries"))
599
602
  CreateTrackerRequest.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
600
603
  CreateTrackerRequest.add_member(:position_filtering, Shapes::ShapeRef.new(shape: PositionFiltering, location_name: "PositionFiltering"))
601
604
  CreateTrackerRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. If included, the only allowed value is RequestBasedUsage."}))
@@ -649,6 +652,7 @@ module Aws::LocationService
649
652
  DescribeGeofenceCollectionResponse.add_member(:collection_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "CollectionName"))
650
653
  DescribeGeofenceCollectionResponse.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreateTime"))
651
654
  DescribeGeofenceCollectionResponse.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, required: true, location_name: "Description"))
655
+ DescribeGeofenceCollectionResponse.add_member(:geofence_count, Shapes::ShapeRef.new(shape: DescribeGeofenceCollectionResponseGeofenceCountInteger, location_name: "GeofenceCount"))
652
656
  DescribeGeofenceCollectionResponse.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
653
657
  DescribeGeofenceCollectionResponse.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. Always returns RequestBasedUsage."}))
654
658
  DescribeGeofenceCollectionResponse.add_member(:pricing_plan_data_source, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "PricingPlanDataSource", metadata: {"deprecatedMessage"=>"Deprecated. Unused."}))
@@ -717,6 +721,7 @@ module Aws::LocationService
717
721
  DescribeTrackerResponse.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreateTime"))
718
722
  DescribeTrackerResponse.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, required: true, location_name: "Description"))
719
723
  DescribeTrackerResponse.add_member(:event_bridge_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "EventBridgeEnabled"))
724
+ DescribeTrackerResponse.add_member(:kms_key_enable_geospatial_queries, Shapes::ShapeRef.new(shape: Boolean, location_name: "KmsKeyEnableGeospatialQueries"))
720
725
  DescribeTrackerResponse.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
721
726
  DescribeTrackerResponse.add_member(:position_filtering, Shapes::ShapeRef.new(shape: PositionFiltering, location_name: "PositionFiltering"))
722
727
  DescribeTrackerResponse.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. Always returns RequestBasedUsage."}))
@@ -873,6 +878,7 @@ module Aws::LocationService
873
878
 
874
879
  LinearRings.member = Shapes::ShapeRef.new(shape: LinearRing)
875
880
 
881
+ ListDevicePositionsRequest.add_member(:filter_geometry, Shapes::ShapeRef.new(shape: TrackingFilterGeometry, location_name: "FilterGeometry"))
876
882
  ListDevicePositionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListDevicePositionsRequestMaxResultsInteger, location_name: "MaxResults"))
877
883
  ListDevicePositionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
878
884
  ListDevicePositionsRequest.add_member(:tracker_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "TrackerName"))
@@ -1222,6 +1228,9 @@ module Aws::LocationService
1222
1228
  TimeZone.add_member(:offset, Shapes::ShapeRef.new(shape: Integer, location_name: "Offset"))
1223
1229
  TimeZone.struct_class = Types::TimeZone
1224
1230
 
1231
+ TrackingFilterGeometry.add_member(:polygon, Shapes::ShapeRef.new(shape: LinearRings, location_name: "Polygon"))
1232
+ TrackingFilterGeometry.struct_class = Types::TrackingFilterGeometry
1233
+
1225
1234
  TruckDimensions.add_member(:height, Shapes::ShapeRef.new(shape: TruckDimensionsHeightDouble, location_name: "Height"))
1226
1235
  TruckDimensions.add_member(:length, Shapes::ShapeRef.new(shape: TruckDimensionsLengthDouble, location_name: "Length"))
1227
1236
  TruckDimensions.add_member(:unit, Shapes::ShapeRef.new(shape: DimensionUnit, location_name: "Unit"))
@@ -1296,6 +1305,7 @@ module Aws::LocationService
1296
1305
 
1297
1306
  UpdateTrackerRequest.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
1298
1307
  UpdateTrackerRequest.add_member(:event_bridge_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "EventBridgeEnabled"))
1308
+ UpdateTrackerRequest.add_member(:kms_key_enable_geospatial_queries, Shapes::ShapeRef.new(shape: Boolean, location_name: "KmsKeyEnableGeospatialQueries"))
1299
1309
  UpdateTrackerRequest.add_member(:position_filtering, Shapes::ShapeRef.new(shape: PositionFiltering, location_name: "PositionFiltering"))
1300
1310
  UpdateTrackerRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. If included, the only allowed value is RequestBasedUsage."}))
1301
1311
  UpdateTrackerRequest.add_member(:pricing_plan_data_source, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "PricingPlanDataSource", metadata: {"deprecatedMessage"=>"Deprecated. No longer allowed."}))
@@ -1341,7 +1351,7 @@ module Aws::LocationService
1341
1351
  o.http_method = "POST"
1342
1352
  o.http_request_uri = "/tracking/v0/trackers/{TrackerName}/consumers"
1343
1353
  o.endpoint_pattern = {
1344
- "hostPrefix" => "tracking.",
1354
+ "hostPrefix" => "cp.tracking.",
1345
1355
  }
1346
1356
  o.input = Shapes::ShapeRef.new(shape: AssociateTrackerConsumerRequest)
1347
1357
  o.output = Shapes::ShapeRef.new(shape: AssociateTrackerConsumerResponse)
@@ -1487,7 +1497,7 @@ module Aws::LocationService
1487
1497
  o.http_method = "POST"
1488
1498
  o.http_request_uri = "/geofencing/v0/collections"
1489
1499
  o.endpoint_pattern = {
1490
- "hostPrefix" => "geofencing.",
1500
+ "hostPrefix" => "cp.geofencing.",
1491
1501
  }
1492
1502
  o.input = Shapes::ShapeRef.new(shape: CreateGeofenceCollectionRequest)
1493
1503
  o.output = Shapes::ShapeRef.new(shape: CreateGeofenceCollectionResponse)
@@ -1504,7 +1514,7 @@ module Aws::LocationService
1504
1514
  o.http_method = "POST"
1505
1515
  o.http_request_uri = "/metadata/v0/keys"
1506
1516
  o.endpoint_pattern = {
1507
- "hostPrefix" => "metadata.",
1517
+ "hostPrefix" => "cp.metadata.",
1508
1518
  }
1509
1519
  o.input = Shapes::ShapeRef.new(shape: CreateKeyRequest)
1510
1520
  o.output = Shapes::ShapeRef.new(shape: CreateKeyResponse)
@@ -1521,7 +1531,7 @@ module Aws::LocationService
1521
1531
  o.http_method = "POST"
1522
1532
  o.http_request_uri = "/maps/v0/maps"
1523
1533
  o.endpoint_pattern = {
1524
- "hostPrefix" => "maps.",
1534
+ "hostPrefix" => "cp.maps.",
1525
1535
  }
1526
1536
  o.input = Shapes::ShapeRef.new(shape: CreateMapRequest)
1527
1537
  o.output = Shapes::ShapeRef.new(shape: CreateMapResponse)
@@ -1538,7 +1548,7 @@ module Aws::LocationService
1538
1548
  o.http_method = "POST"
1539
1549
  o.http_request_uri = "/places/v0/indexes"
1540
1550
  o.endpoint_pattern = {
1541
- "hostPrefix" => "places.",
1551
+ "hostPrefix" => "cp.places.",
1542
1552
  }
1543
1553
  o.input = Shapes::ShapeRef.new(shape: CreatePlaceIndexRequest)
1544
1554
  o.output = Shapes::ShapeRef.new(shape: CreatePlaceIndexResponse)
@@ -1555,7 +1565,7 @@ module Aws::LocationService
1555
1565
  o.http_method = "POST"
1556
1566
  o.http_request_uri = "/routes/v0/calculators"
1557
1567
  o.endpoint_pattern = {
1558
- "hostPrefix" => "routes.",
1568
+ "hostPrefix" => "cp.routes.",
1559
1569
  }
1560
1570
  o.input = Shapes::ShapeRef.new(shape: CreateRouteCalculatorRequest)
1561
1571
  o.output = Shapes::ShapeRef.new(shape: CreateRouteCalculatorResponse)
@@ -1572,7 +1582,7 @@ module Aws::LocationService
1572
1582
  o.http_method = "POST"
1573
1583
  o.http_request_uri = "/tracking/v0/trackers"
1574
1584
  o.endpoint_pattern = {
1575
- "hostPrefix" => "tracking.",
1585
+ "hostPrefix" => "cp.tracking.",
1576
1586
  }
1577
1587
  o.input = Shapes::ShapeRef.new(shape: CreateTrackerRequest)
1578
1588
  o.output = Shapes::ShapeRef.new(shape: CreateTrackerResponse)
@@ -1589,7 +1599,7 @@ module Aws::LocationService
1589
1599
  o.http_method = "DELETE"
1590
1600
  o.http_request_uri = "/geofencing/v0/collections/{CollectionName}"
1591
1601
  o.endpoint_pattern = {
1592
- "hostPrefix" => "geofencing.",
1602
+ "hostPrefix" => "cp.geofencing.",
1593
1603
  }
1594
1604
  o.input = Shapes::ShapeRef.new(shape: DeleteGeofenceCollectionRequest)
1595
1605
  o.output = Shapes::ShapeRef.new(shape: DeleteGeofenceCollectionResponse)
@@ -1605,7 +1615,7 @@ module Aws::LocationService
1605
1615
  o.http_method = "DELETE"
1606
1616
  o.http_request_uri = "/metadata/v0/keys/{KeyName}"
1607
1617
  o.endpoint_pattern = {
1608
- "hostPrefix" => "metadata.",
1618
+ "hostPrefix" => "cp.metadata.",
1609
1619
  }
1610
1620
  o.input = Shapes::ShapeRef.new(shape: DeleteKeyRequest)
1611
1621
  o.output = Shapes::ShapeRef.new(shape: DeleteKeyResponse)
@@ -1621,7 +1631,7 @@ module Aws::LocationService
1621
1631
  o.http_method = "DELETE"
1622
1632
  o.http_request_uri = "/maps/v0/maps/{MapName}"
1623
1633
  o.endpoint_pattern = {
1624
- "hostPrefix" => "maps.",
1634
+ "hostPrefix" => "cp.maps.",
1625
1635
  }
1626
1636
  o.input = Shapes::ShapeRef.new(shape: DeleteMapRequest)
1627
1637
  o.output = Shapes::ShapeRef.new(shape: DeleteMapResponse)
@@ -1637,7 +1647,7 @@ module Aws::LocationService
1637
1647
  o.http_method = "DELETE"
1638
1648
  o.http_request_uri = "/places/v0/indexes/{IndexName}"
1639
1649
  o.endpoint_pattern = {
1640
- "hostPrefix" => "places.",
1650
+ "hostPrefix" => "cp.places.",
1641
1651
  }
1642
1652
  o.input = Shapes::ShapeRef.new(shape: DeletePlaceIndexRequest)
1643
1653
  o.output = Shapes::ShapeRef.new(shape: DeletePlaceIndexResponse)
@@ -1653,7 +1663,7 @@ module Aws::LocationService
1653
1663
  o.http_method = "DELETE"
1654
1664
  o.http_request_uri = "/routes/v0/calculators/{CalculatorName}"
1655
1665
  o.endpoint_pattern = {
1656
- "hostPrefix" => "routes.",
1666
+ "hostPrefix" => "cp.routes.",
1657
1667
  }
1658
1668
  o.input = Shapes::ShapeRef.new(shape: DeleteRouteCalculatorRequest)
1659
1669
  o.output = Shapes::ShapeRef.new(shape: DeleteRouteCalculatorResponse)
@@ -1669,7 +1679,7 @@ module Aws::LocationService
1669
1679
  o.http_method = "DELETE"
1670
1680
  o.http_request_uri = "/tracking/v0/trackers/{TrackerName}"
1671
1681
  o.endpoint_pattern = {
1672
- "hostPrefix" => "tracking.",
1682
+ "hostPrefix" => "cp.tracking.",
1673
1683
  }
1674
1684
  o.input = Shapes::ShapeRef.new(shape: DeleteTrackerRequest)
1675
1685
  o.output = Shapes::ShapeRef.new(shape: DeleteTrackerResponse)
@@ -1685,7 +1695,7 @@ module Aws::LocationService
1685
1695
  o.http_method = "GET"
1686
1696
  o.http_request_uri = "/geofencing/v0/collections/{CollectionName}"
1687
1697
  o.endpoint_pattern = {
1688
- "hostPrefix" => "geofencing.",
1698
+ "hostPrefix" => "cp.geofencing.",
1689
1699
  }
1690
1700
  o.input = Shapes::ShapeRef.new(shape: DescribeGeofenceCollectionRequest)
1691
1701
  o.output = Shapes::ShapeRef.new(shape: DescribeGeofenceCollectionResponse)
@@ -1701,7 +1711,7 @@ module Aws::LocationService
1701
1711
  o.http_method = "GET"
1702
1712
  o.http_request_uri = "/metadata/v0/keys/{KeyName}"
1703
1713
  o.endpoint_pattern = {
1704
- "hostPrefix" => "metadata.",
1714
+ "hostPrefix" => "cp.metadata.",
1705
1715
  }
1706
1716
  o.input = Shapes::ShapeRef.new(shape: DescribeKeyRequest)
1707
1717
  o.output = Shapes::ShapeRef.new(shape: DescribeKeyResponse)
@@ -1717,7 +1727,7 @@ module Aws::LocationService
1717
1727
  o.http_method = "GET"
1718
1728
  o.http_request_uri = "/maps/v0/maps/{MapName}"
1719
1729
  o.endpoint_pattern = {
1720
- "hostPrefix" => "maps.",
1730
+ "hostPrefix" => "cp.maps.",
1721
1731
  }
1722
1732
  o.input = Shapes::ShapeRef.new(shape: DescribeMapRequest)
1723
1733
  o.output = Shapes::ShapeRef.new(shape: DescribeMapResponse)
@@ -1733,7 +1743,7 @@ module Aws::LocationService
1733
1743
  o.http_method = "GET"
1734
1744
  o.http_request_uri = "/places/v0/indexes/{IndexName}"
1735
1745
  o.endpoint_pattern = {
1736
- "hostPrefix" => "places.",
1746
+ "hostPrefix" => "cp.places.",
1737
1747
  }
1738
1748
  o.input = Shapes::ShapeRef.new(shape: DescribePlaceIndexRequest)
1739
1749
  o.output = Shapes::ShapeRef.new(shape: DescribePlaceIndexResponse)
@@ -1749,7 +1759,7 @@ module Aws::LocationService
1749
1759
  o.http_method = "GET"
1750
1760
  o.http_request_uri = "/routes/v0/calculators/{CalculatorName}"
1751
1761
  o.endpoint_pattern = {
1752
- "hostPrefix" => "routes.",
1762
+ "hostPrefix" => "cp.routes.",
1753
1763
  }
1754
1764
  o.input = Shapes::ShapeRef.new(shape: DescribeRouteCalculatorRequest)
1755
1765
  o.output = Shapes::ShapeRef.new(shape: DescribeRouteCalculatorResponse)
@@ -1765,7 +1775,7 @@ module Aws::LocationService
1765
1775
  o.http_method = "GET"
1766
1776
  o.http_request_uri = "/tracking/v0/trackers/{TrackerName}"
1767
1777
  o.endpoint_pattern = {
1768
- "hostPrefix" => "tracking.",
1778
+ "hostPrefix" => "cp.tracking.",
1769
1779
  }
1770
1780
  o.input = Shapes::ShapeRef.new(shape: DescribeTrackerRequest)
1771
1781
  o.output = Shapes::ShapeRef.new(shape: DescribeTrackerResponse)
@@ -1781,7 +1791,7 @@ module Aws::LocationService
1781
1791
  o.http_method = "DELETE"
1782
1792
  o.http_request_uri = "/tracking/v0/trackers/{TrackerName}/consumers/{ConsumerArn}"
1783
1793
  o.endpoint_pattern = {
1784
- "hostPrefix" => "tracking.",
1794
+ "hostPrefix" => "cp.tracking.",
1785
1795
  }
1786
1796
  o.input = Shapes::ShapeRef.new(shape: DisassociateTrackerConsumerRequest)
1787
1797
  o.output = Shapes::ShapeRef.new(shape: DisassociateTrackerConsumerResponse)
@@ -1952,7 +1962,7 @@ module Aws::LocationService
1952
1962
  o.http_method = "POST"
1953
1963
  o.http_request_uri = "/geofencing/v0/list-collections"
1954
1964
  o.endpoint_pattern = {
1955
- "hostPrefix" => "geofencing.",
1965
+ "hostPrefix" => "cp.geofencing.",
1956
1966
  }
1957
1967
  o.input = Shapes::ShapeRef.new(shape: ListGeofenceCollectionsRequest)
1958
1968
  o.output = Shapes::ShapeRef.new(shape: ListGeofenceCollectionsResponse)
@@ -1995,7 +2005,7 @@ module Aws::LocationService
1995
2005
  o.http_method = "POST"
1996
2006
  o.http_request_uri = "/metadata/v0/list-keys"
1997
2007
  o.endpoint_pattern = {
1998
- "hostPrefix" => "metadata.",
2008
+ "hostPrefix" => "cp.metadata.",
1999
2009
  }
2000
2010
  o.input = Shapes::ShapeRef.new(shape: ListKeysRequest)
2001
2011
  o.output = Shapes::ShapeRef.new(shape: ListKeysResponse)
@@ -2016,7 +2026,7 @@ module Aws::LocationService
2016
2026
  o.http_method = "POST"
2017
2027
  o.http_request_uri = "/maps/v0/list-maps"
2018
2028
  o.endpoint_pattern = {
2019
- "hostPrefix" => "maps.",
2029
+ "hostPrefix" => "cp.maps.",
2020
2030
  }
2021
2031
  o.input = Shapes::ShapeRef.new(shape: ListMapsRequest)
2022
2032
  o.output = Shapes::ShapeRef.new(shape: ListMapsResponse)
@@ -2037,7 +2047,7 @@ module Aws::LocationService
2037
2047
  o.http_method = "POST"
2038
2048
  o.http_request_uri = "/places/v0/list-indexes"
2039
2049
  o.endpoint_pattern = {
2040
- "hostPrefix" => "places.",
2050
+ "hostPrefix" => "cp.places.",
2041
2051
  }
2042
2052
  o.input = Shapes::ShapeRef.new(shape: ListPlaceIndexesRequest)
2043
2053
  o.output = Shapes::ShapeRef.new(shape: ListPlaceIndexesResponse)
@@ -2058,7 +2068,7 @@ module Aws::LocationService
2058
2068
  o.http_method = "POST"
2059
2069
  o.http_request_uri = "/routes/v0/list-calculators"
2060
2070
  o.endpoint_pattern = {
2061
- "hostPrefix" => "routes.",
2071
+ "hostPrefix" => "cp.routes.",
2062
2072
  }
2063
2073
  o.input = Shapes::ShapeRef.new(shape: ListRouteCalculatorsRequest)
2064
2074
  o.output = Shapes::ShapeRef.new(shape: ListRouteCalculatorsResponse)
@@ -2079,7 +2089,7 @@ module Aws::LocationService
2079
2089
  o.http_method = "GET"
2080
2090
  o.http_request_uri = "/tags/{ResourceArn}"
2081
2091
  o.endpoint_pattern = {
2082
- "hostPrefix" => "metadata.",
2092
+ "hostPrefix" => "cp.metadata.",
2083
2093
  }
2084
2094
  o.input = Shapes::ShapeRef.new(shape: ListTagsForResourceRequest)
2085
2095
  o.output = Shapes::ShapeRef.new(shape: ListTagsForResourceResponse)
@@ -2095,7 +2105,7 @@ module Aws::LocationService
2095
2105
  o.http_method = "POST"
2096
2106
  o.http_request_uri = "/tracking/v0/trackers/{TrackerName}/list-consumers"
2097
2107
  o.endpoint_pattern = {
2098
- "hostPrefix" => "tracking.",
2108
+ "hostPrefix" => "cp.tracking.",
2099
2109
  }
2100
2110
  o.input = Shapes::ShapeRef.new(shape: ListTrackerConsumersRequest)
2101
2111
  o.output = Shapes::ShapeRef.new(shape: ListTrackerConsumersResponse)
@@ -2117,7 +2127,7 @@ module Aws::LocationService
2117
2127
  o.http_method = "POST"
2118
2128
  o.http_request_uri = "/tracking/v0/list-trackers"
2119
2129
  o.endpoint_pattern = {
2120
- "hostPrefix" => "tracking.",
2130
+ "hostPrefix" => "cp.tracking.",
2121
2131
  }
2122
2132
  o.input = Shapes::ShapeRef.new(shape: ListTrackersRequest)
2123
2133
  o.output = Shapes::ShapeRef.new(shape: ListTrackersResponse)
@@ -2203,7 +2213,7 @@ module Aws::LocationService
2203
2213
  o.http_method = "POST"
2204
2214
  o.http_request_uri = "/tags/{ResourceArn}"
2205
2215
  o.endpoint_pattern = {
2206
- "hostPrefix" => "metadata.",
2216
+ "hostPrefix" => "cp.metadata.",
2207
2217
  }
2208
2218
  o.input = Shapes::ShapeRef.new(shape: TagResourceRequest)
2209
2219
  o.output = Shapes::ShapeRef.new(shape: TagResourceResponse)
@@ -2219,7 +2229,7 @@ module Aws::LocationService
2219
2229
  o.http_method = "DELETE"
2220
2230
  o.http_request_uri = "/tags/{ResourceArn}"
2221
2231
  o.endpoint_pattern = {
2222
- "hostPrefix" => "metadata.",
2232
+ "hostPrefix" => "cp.metadata.",
2223
2233
  }
2224
2234
  o.input = Shapes::ShapeRef.new(shape: UntagResourceRequest)
2225
2235
  o.output = Shapes::ShapeRef.new(shape: UntagResourceResponse)
@@ -2235,7 +2245,7 @@ module Aws::LocationService
2235
2245
  o.http_method = "PATCH"
2236
2246
  o.http_request_uri = "/geofencing/v0/collections/{CollectionName}"
2237
2247
  o.endpoint_pattern = {
2238
- "hostPrefix" => "geofencing.",
2248
+ "hostPrefix" => "cp.geofencing.",
2239
2249
  }
2240
2250
  o.input = Shapes::ShapeRef.new(shape: UpdateGeofenceCollectionRequest)
2241
2251
  o.output = Shapes::ShapeRef.new(shape: UpdateGeofenceCollectionResponse)
@@ -2251,7 +2261,7 @@ module Aws::LocationService
2251
2261
  o.http_method = "PATCH"
2252
2262
  o.http_request_uri = "/metadata/v0/keys/{KeyName}"
2253
2263
  o.endpoint_pattern = {
2254
- "hostPrefix" => "metadata.",
2264
+ "hostPrefix" => "cp.metadata.",
2255
2265
  }
2256
2266
  o.input = Shapes::ShapeRef.new(shape: UpdateKeyRequest)
2257
2267
  o.output = Shapes::ShapeRef.new(shape: UpdateKeyResponse)
@@ -2267,7 +2277,7 @@ module Aws::LocationService
2267
2277
  o.http_method = "PATCH"
2268
2278
  o.http_request_uri = "/maps/v0/maps/{MapName}"
2269
2279
  o.endpoint_pattern = {
2270
- "hostPrefix" => "maps.",
2280
+ "hostPrefix" => "cp.maps.",
2271
2281
  }
2272
2282
  o.input = Shapes::ShapeRef.new(shape: UpdateMapRequest)
2273
2283
  o.output = Shapes::ShapeRef.new(shape: UpdateMapResponse)
@@ -2283,7 +2293,7 @@ module Aws::LocationService
2283
2293
  o.http_method = "PATCH"
2284
2294
  o.http_request_uri = "/places/v0/indexes/{IndexName}"
2285
2295
  o.endpoint_pattern = {
2286
- "hostPrefix" => "places.",
2296
+ "hostPrefix" => "cp.places.",
2287
2297
  }
2288
2298
  o.input = Shapes::ShapeRef.new(shape: UpdatePlaceIndexRequest)
2289
2299
  o.output = Shapes::ShapeRef.new(shape: UpdatePlaceIndexResponse)
@@ -2299,7 +2309,7 @@ module Aws::LocationService
2299
2309
  o.http_method = "PATCH"
2300
2310
  o.http_request_uri = "/routes/v0/calculators/{CalculatorName}"
2301
2311
  o.endpoint_pattern = {
2302
- "hostPrefix" => "routes.",
2312
+ "hostPrefix" => "cp.routes.",
2303
2313
  }
2304
2314
  o.input = Shapes::ShapeRef.new(shape: UpdateRouteCalculatorRequest)
2305
2315
  o.output = Shapes::ShapeRef.new(shape: UpdateRouteCalculatorResponse)
@@ -2315,7 +2325,7 @@ module Aws::LocationService
2315
2325
  o.http_method = "PATCH"
2316
2326
  o.http_request_uri = "/tracking/v0/trackers/{TrackerName}"
2317
2327
  o.endpoint_pattern = {
2318
- "hostPrefix" => "tracking.",
2328
+ "hostPrefix" => "cp.tracking.",
2319
2329
  }
2320
2330
  o.input = Shapes::ShapeRef.new(shape: UpdateTrackerRequest)
2321
2331
  o.output = Shapes::ShapeRef.new(shape: UpdateTrackerResponse)
@@ -1897,6 +1897,31 @@ module Aws::LocationService
1897
1897
  # </note>
1898
1898
  # @return [Boolean]
1899
1899
  #
1900
+ # @!attribute [rw] kms_key_enable_geospatial_queries
1901
+ # Enables `GeospatialQueries` for a tracker that uses a [Amazon Web
1902
+ # Services KMS customer managed key][1].
1903
+ #
1904
+ # This parameter is only used if you are using a KMS customer managed
1905
+ # key.
1906
+ #
1907
+ # <note markdown="1"> If you wish to encrypt your data using your own KMS customer managed
1908
+ # key, then the Bounding Polygon Queries feature will be disabled by
1909
+ # default. This is because by using this feature, a representation of
1910
+ # your device positions will not be encrypted using the your KMS
1911
+ # managed key. The exact device position, however; is still encrypted
1912
+ # using your managed key.
1913
+ #
1914
+ # You can choose to opt-in to the Bounding Polygon Quseries feature.
1915
+ # This is done by setting the `KmsKeyEnableGeospatialQueries`
1916
+ # parameter to true when creating or updating a Tracker.
1917
+ #
1918
+ # </note>
1919
+ #
1920
+ #
1921
+ #
1922
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html
1923
+ # @return [Boolean]
1924
+ #
1900
1925
  # @!attribute [rw] kms_key_id
1901
1926
  # A key identifier for an [Amazon Web Services KMS customer managed
1902
1927
  # key][1]. Enter a key ID, key ARN, alias name, or alias ARN.
@@ -1988,6 +2013,7 @@ module Aws::LocationService
1988
2013
  class CreateTrackerRequest < Struct.new(
1989
2014
  :description,
1990
2015
  :event_bridge_enabled,
2016
+ :kms_key_enable_geospatial_queries,
1991
2017
  :kms_key_id,
1992
2018
  :position_filtering,
1993
2019
  :pricing_plan,
@@ -2209,6 +2235,10 @@ module Aws::LocationService
2209
2235
  # The optional description for the geofence collection.
2210
2236
  # @return [String]
2211
2237
  #
2238
+ # @!attribute [rw] geofence_count
2239
+ # The number of geofences in the geofence collection.
2240
+ # @return [Integer]
2241
+ #
2212
2242
  # @!attribute [rw] kms_key_id
2213
2243
  # A key identifier for an [Amazon Web Services KMS customer managed
2214
2244
  # key][1] assigned to the Amazon Location resource
@@ -2246,6 +2276,7 @@ module Aws::LocationService
2246
2276
  :collection_name,
2247
2277
  :create_time,
2248
2278
  :description,
2279
+ :geofence_count,
2249
2280
  :kms_key_id,
2250
2281
  :pricing_plan,
2251
2282
  :pricing_plan_data_source,
@@ -2640,6 +2671,31 @@ module Aws::LocationService
2640
2671
  # enabled. If set to `true` these events will be sent to EventBridge.
2641
2672
  # @return [Boolean]
2642
2673
  #
2674
+ # @!attribute [rw] kms_key_enable_geospatial_queries
2675
+ # Enables `GeospatialQueries` for a tracker that uses a [Amazon Web
2676
+ # Services KMS customer managed key][1].
2677
+ #
2678
+ # This parameter is only used if you are using a KMS customer managed
2679
+ # key.
2680
+ #
2681
+ # <note markdown="1"> If you wish to encrypt your data using your own KMS customer managed
2682
+ # key, then the Bounding Polygon Queries feature will be disabled by
2683
+ # default. This is because by using this feature, a representation of
2684
+ # your device positions will not be encrypted using the your KMS
2685
+ # managed key. The exact device position, however; is still encrypted
2686
+ # using your managed key.
2687
+ #
2688
+ # You can choose to opt-in to the Bounding Polygon Quseries feature.
2689
+ # This is done by setting the `KmsKeyEnableGeospatialQueries`
2690
+ # parameter to true when creating or updating a Tracker.
2691
+ #
2692
+ # </note>
2693
+ #
2694
+ #
2695
+ #
2696
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html
2697
+ # @return [Boolean]
2698
+ #
2643
2699
  # @!attribute [rw] kms_key_id
2644
2700
  # A key identifier for an [Amazon Web Services KMS customer managed
2645
2701
  # key][1] assigned to the Amazon Location resource.
@@ -2694,6 +2750,7 @@ module Aws::LocationService
2694
2750
  :create_time,
2695
2751
  :description,
2696
2752
  :event_bridge_enabled,
2753
+ :kms_key_enable_geospatial_queries,
2697
2754
  :kms_key_id,
2698
2755
  :position_filtering,
2699
2756
  :pricing_plan,
@@ -3119,7 +3176,7 @@ module Aws::LocationService
3119
3176
  # A comma-separated list of fonts to load glyphs from in order of
3120
3177
  # preference. For example, `Noto Sans Regular, Arial Unicode`.
3121
3178
  #
3122
- # Valid fonts stacks for [Esri][1] styles:
3179
+ # Valid font stacks for [Esri][1] styles:
3123
3180
  #
3124
3181
  # * VectorEsriDarkGrayCanvas – `Ubuntu Medium Italic` \| `Ubuntu
3125
3182
  # Medium` \| `Ubuntu Italic` \| `Ubuntu Regular` \| `Ubuntu Bold`
@@ -3598,6 +3655,10 @@ module Aws::LocationService
3598
3655
  include Aws::Structure
3599
3656
  end
3600
3657
 
3658
+ # @!attribute [rw] filter_geometry
3659
+ # The geomerty used to filter device positions.
3660
+ # @return [Types::TrackingFilterGeometry]
3661
+ #
3601
3662
  # @!attribute [rw] max_results
3602
3663
  # An optional limit for the number of entries returned in a single
3603
3664
  # call.
@@ -3620,6 +3681,7 @@ module Aws::LocationService
3620
3681
  # @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/ListDevicePositionsRequest AWS API Documentation
3621
3682
  #
3622
3683
  class ListDevicePositionsRequest < Struct.new(
3684
+ :filter_geometry,
3623
3685
  :max_results,
3624
3686
  :next_token,
3625
3687
  :tracker_name)
@@ -3628,10 +3690,7 @@ module Aws::LocationService
3628
3690
  end
3629
3691
 
3630
3692
  # @!attribute [rw] entries
3631
- # Contains details about each device's last known position. These
3632
- # details includes the device ID, the time when the position was
3633
- # sampled on the device, the time that the service received the
3634
- # update, and the most recent coordinates.
3693
+ # Contains details about each device's last known position.
3635
3694
  # @return [Array<Types::ListDevicePositionsResponseEntry>]
3636
3695
  #
3637
3696
  # @!attribute [rw] next_token
@@ -5909,6 +5968,21 @@ module Aws::LocationService
5909
5968
  include Aws::Structure
5910
5969
  end
5911
5970
 
5971
+ # The geomerty used to filter device positions.
5972
+ #
5973
+ # @!attribute [rw] polygon
5974
+ # The set of arrays which define the polygon. A polygon can have
5975
+ # between 4 and 1000 vertices.
5976
+ # @return [Array<Array<Array<Float>>>]
5977
+ #
5978
+ # @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/TrackingFilterGeometry AWS API Documentation
5979
+ #
5980
+ class TrackingFilterGeometry < Struct.new(
5981
+ :polygon)
5982
+ SENSITIVE = []
5983
+ include Aws::Structure
5984
+ end
5985
+
5912
5986
  # Contains details about the truck dimensions in the unit of measurement
5913
5987
  # that you specify. Used to filter out roads that can't support or
5914
5988
  # allow the specified dimensions for requests that specify `TravelMode`
@@ -6361,6 +6435,18 @@ module Aws::LocationService
6361
6435
  # </note>
6362
6436
  # @return [Boolean]
6363
6437
  #
6438
+ # @!attribute [rw] kms_key_enable_geospatial_queries
6439
+ # Enables `GeospatialQueries` for a tracker that uses a [Amazon Web
6440
+ # Services KMS customer managed key][1].
6441
+ #
6442
+ # This parameter is only used if you are using a KMS customer managed
6443
+ # key.
6444
+ #
6445
+ #
6446
+ #
6447
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html
6448
+ # @return [Boolean]
6449
+ #
6364
6450
  # @!attribute [rw] position_filtering
6365
6451
  # Updates the position filtering for the tracker resource.
6366
6452
  #
@@ -6408,6 +6494,7 @@ module Aws::LocationService
6408
6494
  class UpdateTrackerRequest < Struct.new(
6409
6495
  :description,
6410
6496
  :event_bridge_enabled,
6497
+ :kms_key_enable_geospatial_queries,
6411
6498
  :position_filtering,
6412
6499
  :pricing_plan,
6413
6500
  :pricing_plan_data_source,
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-locationservice/customizations'
52
52
  # @!group service
53
53
  module Aws::LocationService
54
54
 
55
- GEM_VERSION = '1.37.0'
55
+ GEM_VERSION = '1.39.0'
56
56
 
57
57
  end
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.37.0
4
+ version: 1.39.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-09-27 00:00:00.000000000 Z
11
+ date: 2023-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core