aws-sdk-locationservice 1.44.0 → 1.46.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: 93e9fe61b27c4450689cf2675904d8df7550dff97541dbdeff5875d7789b2e3e
4
- data.tar.gz: d4d2c0cc017600f225d45ffb864d70fcf2b9db0e5e12b7b2388cbd1e703bbbae
3
+ metadata.gz: 50d10f2df8a87cd6dc89c24da763dc7d959c71167a1c12ef3430550f9c76ed9a
4
+ data.tar.gz: df2115307c58372f9756273a277a78df90a684e511cf8da1ac327ce3ac91da70
5
5
  SHA512:
6
- metadata.gz: f5047b6482d2b2dfd4ef976d5ea70ebb37ec1a90053168dac5916cc293a951a7e11773f060ffad763716d8fd8581debbd27eb6e1ed5ee1092526c931c3bfc968
7
- data.tar.gz: e14e84d16379acff2d4d28d83b62859d1374c38818c91f9289d5f92ed9e0dd9575d25ff614c961dfae0feb6b35e78aeb3b00276e180d4b861ac58abc47637652
6
+ metadata.gz: 84e3bb5a514858952df9c8129eafd882de2e6aa548834f228166f1d663fbf669ef90efee51da15ddbc626ec849b8821c1c3e22999f6031c7c237e9af2c953c91
7
+ data.tar.gz: 4738535da3571069d033b1bad2a5f4a030c944c87c7e8231fb485b88c14fae89a1d1a51b85b496e3aad175e45d224174c283347c90cb2692f7e8e28403770b2d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.46.0 (2024-01-12)
5
+ ------------------
6
+
7
+ * Feature - Location SDK documentation update. Added missing fonts to the MapConfiguration data type. Updated note for the SubMunicipality property in the place data type.
8
+
9
+ 1.45.0 (2024-01-10)
10
+ ------------------
11
+
12
+ * Feature - This release adds API support for custom layers for the maps service APIs: CreateMap, UpdateMap, DescribeMap.
13
+
4
14
  1.44.0 (2023-12-29)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.44.0
1
+ 1.46.0
@@ -1579,6 +1579,7 @@ module Aws::LocationService
1579
1579
  #
1580
1580
  # resp = client.create_map({
1581
1581
  # configuration: { # required
1582
+ # custom_layers: ["CustomLayer"],
1582
1583
  # political_view: "CountryCode3",
1583
1584
  # style: "MapStyle", # required
1584
1585
  # },
@@ -2334,6 +2335,8 @@ module Aws::LocationService
2334
2335
  #
2335
2336
  # @example Response structure
2336
2337
  #
2338
+ # resp.configuration.custom_layers #=> Array
2339
+ # resp.configuration.custom_layers[0] #=> String
2337
2340
  # resp.configuration.political_view #=> String
2338
2341
  # resp.configuration.style #=> String
2339
2342
  # resp.create_time #=> Time
@@ -2752,7 +2755,7 @@ module Aws::LocationService
2752
2755
  # Bold`
2753
2756
  #
2754
2757
  # * VectorEsriNavigation – `Arial Regular` \| `Arial Italic` \| `Arial
2755
- # Bold`
2758
+ # Bold` \| `Arial Unicode MS Bold` \| `Arial Unicode MS Regular`
2756
2759
  #
2757
2760
  # Valid font stacks for [HERE Technologies][2] styles:
2758
2761
  #
@@ -3062,6 +3065,39 @@ module Aws::LocationService
3062
3065
  # @option params [required, String] :place_id
3063
3066
  # The identifier of the place to find.
3064
3067
  #
3068
+ # While you can use PlaceID in subsequent requests, PlaceID is not
3069
+ # intended to be a permanent identifier and the ID can change between
3070
+ # consecutive API calls. Please see the following PlaceID behaviour for
3071
+ # each data provider:
3072
+ #
3073
+ # * Esri: Place IDs will change every quarter at a minimum. The typical
3074
+ # time period for these changes would be March, June, September, and
3075
+ # December. Place IDs might also change between the typical quarterly
3076
+ # change but that will be much less frequent.
3077
+ #
3078
+ # * HERE: We recommend that you cache data for no longer than a week to
3079
+ # keep your data data fresh. You can assume that less than 1% ID
3080
+ # shifts will release over release which is approximately 1 - 2 times
3081
+ # per week.
3082
+ #
3083
+ # * Grab: Place IDs can expire or become invalid in the following
3084
+ # situations.
3085
+ #
3086
+ # * Data operations: The POI may be removed from Grab POI database by
3087
+ # Grab Map Ops based on the ground-truth, such as being closed in
3088
+ # the real world, being detected as a duplicate POI, or having
3089
+ # incorrect information. Grab will synchronize data to the Waypoint
3090
+ # environment on weekly basis.
3091
+ #
3092
+ # * Interpolated POI: Interpolated POI is a temporary POI generated in
3093
+ # real time when serving a request, and it will be marked as derived
3094
+ # in the `place.result_type` field in the response. The information
3095
+ # of interpolated POIs will be retained for at least 30 days, which
3096
+ # means that within 30 days, you are able to obtain POI details by
3097
+ # Place ID from Place Details API. After 30 days, the interpolated
3098
+ # POIs(both Place ID and details) may expire and inaccessible from
3099
+ # the Places Details API.
3100
+ #
3065
3101
  # @return [Types::GetPlaceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3066
3102
  #
3067
3103
  # * {Types::GetPlaceResponse#place #place} => Types::Place
@@ -4396,6 +4432,7 @@ module Aws::LocationService
4396
4432
  #
4397
4433
  # resp = client.update_map({
4398
4434
  # configuration_update: {
4435
+ # custom_layers: ["CustomLayer"],
4399
4436
  # political_view: "CountryCode3OrEmpty",
4400
4437
  # },
4401
4438
  # description: "ResourceDescription",
@@ -4617,7 +4654,7 @@ module Aws::LocationService
4617
4654
  params: params,
4618
4655
  config: config)
4619
4656
  context[:gem_name] = 'aws-sdk-locationservice'
4620
- context[:gem_version] = '1.44.0'
4657
+ context[:gem_version] = '1.46.0'
4621
4658
  Seahorse::Client::Request.new(handlers, context)
4622
4659
  end
4623
4660
 
@@ -99,6 +99,8 @@ module Aws::LocationService
99
99
  CreateRouteCalculatorResponse = Shapes::StructureShape.new(name: 'CreateRouteCalculatorResponse')
100
100
  CreateTrackerRequest = Shapes::StructureShape.new(name: 'CreateTrackerRequest')
101
101
  CreateTrackerResponse = Shapes::StructureShape.new(name: 'CreateTrackerResponse')
102
+ CustomLayer = Shapes::StringShape.new(name: 'CustomLayer')
103
+ CustomLayerList = Shapes::ListShape.new(name: 'CustomLayerList')
102
104
  DataSourceConfiguration = Shapes::StructureShape.new(name: 'DataSourceConfiguration')
103
105
  DeleteGeofenceCollectionRequest = Shapes::StructureShape.new(name: 'DeleteGeofenceCollectionRequest')
104
106
  DeleteGeofenceCollectionResponse = Shapes::StructureShape.new(name: 'DeleteGeofenceCollectionResponse')
@@ -615,6 +617,8 @@ module Aws::LocationService
615
617
  CreateTrackerResponse.add_member(:tracker_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "TrackerName"))
616
618
  CreateTrackerResponse.struct_class = Types::CreateTrackerResponse
617
619
 
620
+ CustomLayerList.member = Shapes::ShapeRef.new(shape: CustomLayer)
621
+
618
622
  DataSourceConfiguration.add_member(:intended_use, Shapes::ShapeRef.new(shape: IntendedUse, location_name: "IntendedUse"))
619
623
  DataSourceConfiguration.struct_class = Types::DataSourceConfiguration
620
624
 
@@ -1044,10 +1048,12 @@ module Aws::LocationService
1044
1048
 
1045
1049
  ListTrackersResponseEntryList.member = Shapes::ShapeRef.new(shape: ListTrackersResponseEntry)
1046
1050
 
1051
+ MapConfiguration.add_member(:custom_layers, Shapes::ShapeRef.new(shape: CustomLayerList, location_name: "CustomLayers"))
1047
1052
  MapConfiguration.add_member(:political_view, Shapes::ShapeRef.new(shape: CountryCode3, location_name: "PoliticalView"))
1048
1053
  MapConfiguration.add_member(:style, Shapes::ShapeRef.new(shape: MapStyle, required: true, location_name: "Style"))
1049
1054
  MapConfiguration.struct_class = Types::MapConfiguration
1050
1055
 
1056
+ MapConfigurationUpdate.add_member(:custom_layers, Shapes::ShapeRef.new(shape: CustomLayerList, location_name: "CustomLayers"))
1051
1057
  MapConfigurationUpdate.add_member(:political_view, Shapes::ShapeRef.new(shape: CountryCode3OrEmpty, location_name: "PoliticalView"))
1052
1058
  MapConfigurationUpdate.struct_class = Types::MapConfigurationUpdate
1053
1059
 
@@ -3219,7 +3219,7 @@ module Aws::LocationService
3219
3219
  # Bold`
3220
3220
  #
3221
3221
  # * VectorEsriNavigation – `Arial Regular` \| `Arial Italic` \| `Arial
3222
- # Bold`
3222
+ # Bold` \| `Arial Unicode MS Bold` \| `Arial Unicode MS Regular`
3223
3223
  #
3224
3224
  # Valid font stacks for [HERE Technologies][2] styles:
3225
3225
  #
@@ -3527,6 +3527,39 @@ module Aws::LocationService
3527
3527
  #
3528
3528
  # @!attribute [rw] place_id
3529
3529
  # The identifier of the place to find.
3530
+ #
3531
+ # While you can use PlaceID in subsequent requests, PlaceID is not
3532
+ # intended to be a permanent identifier and the ID can change between
3533
+ # consecutive API calls. Please see the following PlaceID behaviour
3534
+ # for each data provider:
3535
+ #
3536
+ # * Esri: Place IDs will change every quarter at a minimum. The
3537
+ # typical time period for these changes would be March, June,
3538
+ # September, and December. Place IDs might also change between the
3539
+ # typical quarterly change but that will be much less frequent.
3540
+ #
3541
+ # * HERE: We recommend that you cache data for no longer than a week
3542
+ # to keep your data data fresh. You can assume that less than 1% ID
3543
+ # shifts will release over release which is approximately 1 - 2
3544
+ # times per week.
3545
+ #
3546
+ # * Grab: Place IDs can expire or become invalid in the following
3547
+ # situations.
3548
+ #
3549
+ # * Data operations: The POI may be removed from Grab POI database
3550
+ # by Grab Map Ops based on the ground-truth, such as being closed
3551
+ # in the real world, being detected as a duplicate POI, or having
3552
+ # incorrect information. Grab will synchronize data to the
3553
+ # Waypoint environment on weekly basis.
3554
+ #
3555
+ # * Interpolated POI: Interpolated POI is a temporary POI generated
3556
+ # in real time when serving a request, and it will be marked as
3557
+ # derived in the `place.result_type` field in the response. The
3558
+ # information of interpolated POIs will be retained for at least
3559
+ # 30 days, which means that within 30 days, you are able to obtain
3560
+ # POI details by Place ID from Place Details API. After 30 days,
3561
+ # the interpolated POIs(both Place ID and details) may expire and
3562
+ # inaccessible from the Places Details API.
3530
3563
  # @return [String]
3531
3564
  #
3532
3565
  # @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/GetPlaceRequest AWS API Documentation
@@ -4582,6 +4615,22 @@ module Aws::LocationService
4582
4615
 
4583
4616
  # Specifies the map tile style selected from an available provider.
4584
4617
  #
4618
+ # @!attribute [rw] custom_layers
4619
+ # Specifies the custom layers for the style. Leave unset to not enable
4620
+ # any custom layer, or, for styles that support custom layers, you can
4621
+ # enable layer(s), such as `POI` layer for the VectorEsriNavigation
4622
+ # style. Default is `unset`.
4623
+ #
4624
+ # <note markdown="1"> Currenlty only `VectorEsriNavigation` supports CustomLayers. For
4625
+ # more information, see [Custom Layers][1].
4626
+ #
4627
+ # </note>
4628
+ #
4629
+ #
4630
+ #
4631
+ # [1]: https://docs.aws.amazon.com/location/latest/developerguide/map-concepts.html#map-custom-layers
4632
+ # @return [Array<String>]
4633
+ #
4585
4634
  # @!attribute [rw] political_view
4586
4635
  # Specifies the political view for the style. Leave unset to not use a
4587
4636
  # political view, or, for styles that support specific political
@@ -4604,10 +4653,15 @@ module Aws::LocationService
4604
4653
  #
4605
4654
  # Valid [Esri map styles][1]:
4606
4655
  #
4607
- # * `VectorEsriDarkGrayCanvas` – The Esri Dark Gray Canvas map style.
4608
- # A vector basemap with a dark gray, neutral background with minimal
4609
- # colors, labels, and features that's designed to draw attention to
4610
- # your thematic content.
4656
+ # * `VectorEsriNavigation` – The Esri Navigation map style, which
4657
+ # provides a detailed basemap for the world symbolized with a custom
4658
+ # navigation map style that's designed for use during the day in
4659
+ # mobile devices. It also includes a richer set of places, such as
4660
+ # shops, services, restaurants, attractions, and other points of
4661
+ # interest. Enable the `POI` layer by setting it in CustomLayers to
4662
+ # leverage the additional places data.
4663
+ #
4664
+ #
4611
4665
  #
4612
4666
  # * `RasterEsriImagery` – The Esri Imagery map style. A raster basemap
4613
4667
  # that provides one meter or better satellite and aerial imagery in
@@ -4627,33 +4681,18 @@ module Aws::LocationService
4627
4681
  # Esri street map style. The vector tile layer is similar in content
4628
4682
  # and style to the World Street Map raster map.
4629
4683
  #
4630
- # * `VectorEsriNavigation` – The Esri Navigation map style, which
4631
- # provides a detailed basemap for the world symbolized with a custom
4632
- # navigation map style that's designed for use during the day in
4633
- # mobile devices.
4684
+ # * `VectorEsriDarkGrayCanvas` – The Esri Dark Gray Canvas map style.
4685
+ # A vector basemap with a dark gray, neutral background with minimal
4686
+ # colors, labels, and features that's designed to draw attention to
4687
+ # your thematic content.
4634
4688
  #
4635
4689
  # Valid [HERE Technologies map styles][2]:
4636
4690
  #
4637
- # * `VectorHereContrast` – The HERE Contrast (Berlin) map style is a
4638
- # high contrast detailed base map of the world that blends 3D and 2D
4639
- # rendering.
4640
- #
4641
- # <note markdown="1"> The `VectorHereContrast` style has been renamed from
4642
- # `VectorHereBerlin`. `VectorHereBerlin` has been deprecated, but
4643
- # will continue to work in applications that use it.
4644
- #
4645
- # </note>
4646
- #
4647
4691
  # * `VectorHereExplore` – A default HERE map style containing a
4648
4692
  # neutral, global map and its features including roads, buildings,
4649
4693
  # landmarks, and water features. It also now includes a fully
4650
4694
  # designed map of Japan.
4651
4695
  #
4652
- # * `VectorHereExploreTruck` – A global map containing truck
4653
- # restrictions and attributes (e.g. width / height / HAZMAT)
4654
- # symbolized with highlighted segments and icons on top of HERE
4655
- # Explore to support use cases within transport and logistics.
4656
- #
4657
4696
  # * `RasterHereExploreSatellite` – A global map containing high
4658
4697
  # resolution satellite imagery.
4659
4698
  #
@@ -4669,6 +4708,21 @@ module Aws::LocationService
4669
4708
  #
4670
4709
  # </note>
4671
4710
  #
4711
+ # * `VectorHereContrast` – The HERE Contrast (Berlin) map style is a
4712
+ # high contrast detailed base map of the world that blends 3D and 2D
4713
+ # rendering.
4714
+ #
4715
+ # <note markdown="1"> The `VectorHereContrast` style has been renamed from
4716
+ # `VectorHereBerlin`. `VectorHereBerlin` has been deprecated, but
4717
+ # will continue to work in applications that use it.
4718
+ #
4719
+ # </note>
4720
+ #
4721
+ # * `VectorHereExploreTruck` – A global map containing truck
4722
+ # restrictions and attributes (e.g. width / height / HAZMAT)
4723
+ # symbolized with highlighted segments and icons on top of HERE
4724
+ # Explore to support use cases within transport and logistics.
4725
+ #
4672
4726
  # Valid [GrabMaps map styles][3]:
4673
4727
  #
4674
4728
  # * `VectorGrabStandardLight` – The Grab Standard Light map style
@@ -4720,6 +4774,7 @@ module Aws::LocationService
4720
4774
  # @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/MapConfiguration AWS API Documentation
4721
4775
  #
4722
4776
  class MapConfiguration < Struct.new(
4777
+ :custom_layers,
4723
4778
  :political_view,
4724
4779
  :style)
4725
4780
  SENSITIVE = []
@@ -4728,6 +4783,22 @@ module Aws::LocationService
4728
4783
 
4729
4784
  # Specifies the political view for the style.
4730
4785
  #
4786
+ # @!attribute [rw] custom_layers
4787
+ # Specifies the custom layers for the style. Leave unset to not enable
4788
+ # any custom layer, or, for styles that support custom layers, you can
4789
+ # enable layer(s), such as `POI` layer for the VectorEsriNavigation
4790
+ # style. Default is `unset`.
4791
+ #
4792
+ # <note markdown="1"> Currenlty only `VectorEsriNavigation` supports CustomLayers. For
4793
+ # more information, see [Custom Layers][1].
4794
+ #
4795
+ # </note>
4796
+ #
4797
+ #
4798
+ #
4799
+ # [1]: https://docs.aws.amazon.com/location/latest/developerguide/map-concepts.html#map-custom-layers
4800
+ # @return [Array<String>]
4801
+ #
4731
4802
  # @!attribute [rw] political_view
4732
4803
  # Specifies the political view for the style. Set to an empty string
4733
4804
  # to not use a political view, or, for styles that support specific
@@ -4747,6 +4818,7 @@ module Aws::LocationService
4747
4818
  # @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/MapConfigurationUpdate AWS API Documentation
4748
4819
  #
4749
4820
  class MapConfigurationUpdate < Struct.new(
4821
+ :custom_layers,
4750
4822
  :political_view)
4751
4823
  SENSITIVE = []
4752
4824
  include Aws::Structure
@@ -4831,12 +4903,19 @@ module Aws::LocationService
4831
4903
  #
4832
4904
  # @!attribute [rw] sub_municipality
4833
4905
  # An area that's part of a larger municipality. For example,
4834
- # `Blissville ` is a submunicipality in the Queen County in New York.
4906
+ # `Blissville` is a submunicipality in the Queen County in New York.
4835
4907
  #
4836
- # <note markdown="1"> This property supported by Esri and OpenData. The Esri property is
4837
- # `district`, and the OpenData property is `borough`.
4908
+ # <note markdown="1"> This property is only returned for a place index that uses Esri as a
4909
+ # data provider. The property is represented as a `district`.
4838
4910
  #
4839
4911
  # </note>
4912
+ #
4913
+ # For more information about data providers, see [Amazon Location
4914
+ # Service data providers][1].
4915
+ #
4916
+ #
4917
+ #
4918
+ # [1]: https://docs.aws.amazon.com/location/latest/developerguide/what-is-data-provider.html
4840
4919
  # @return [String]
4841
4920
  #
4842
4921
  # @!attribute [rw] sub_region
@@ -4858,8 +4937,9 @@ module Aws::LocationService
4858
4937
  # For addresses with multiple units, the unit identifier. Can include
4859
4938
  # numbers and letters, for example `3B` or `Unit 123`.
4860
4939
  #
4861
- # <note markdown="1"> Returned only for a place index that uses Esri or Grab as a data
4862
- # provider. Is not returned for `SearchPlaceIndexForPosition`.
4940
+ # <note markdown="1"> This property is returned only for a place index that uses Esri or
4941
+ # Grab as a data provider. It is not returned for
4942
+ # `SearchPlaceIndexForPosition`.
4863
4943
  #
4864
4944
  # </note>
4865
4945
  # @return [String]
@@ -4868,7 +4948,8 @@ module Aws::LocationService
4868
4948
  # For addresses with a `UnitNumber`, the type of unit. For example,
4869
4949
  # `Apartment`.
4870
4950
  #
4871
- # <note markdown="1"> Returned only for a place index that uses Esri as a data provider.
4951
+ # <note markdown="1"> This property is returned only for a place index that uses Esri as a
4952
+ # data provider.
4872
4953
  #
4873
4954
  # </note>
4874
4955
  # @return [String]
@@ -5170,6 +5251,39 @@ module Aws::LocationService
5170
5251
  # providers.
5171
5252
  #
5172
5253
  # </note>
5254
+ #
5255
+ # While you can use PlaceID in subsequent requests, PlaceID is not
5256
+ # intended to be a permanent identifier and the ID can change between
5257
+ # consecutive API calls. Please see the following PlaceID behaviour
5258
+ # for each data provider:
5259
+ #
5260
+ # * Esri: Place IDs will change every quarter at a minimum. The
5261
+ # typical time period for these changes would be March, June,
5262
+ # September, and December. Place IDs might also change between the
5263
+ # typical quarterly change but that will be much less frequent.
5264
+ #
5265
+ # * HERE: We recommend that you cache data for no longer than a week
5266
+ # to keep your data data fresh. You can assume that less than 1% ID
5267
+ # shifts will release over release which is approximately 1 - 2
5268
+ # times per week.
5269
+ #
5270
+ # * Grab: Place IDs can expire or become invalid in the following
5271
+ # situations.
5272
+ #
5273
+ # * Data operations: The POI may be removed from Grab POI database
5274
+ # by Grab Map Ops based on the ground-truth, such as being closed
5275
+ # in the real world, being detected as a duplicate POI, or having
5276
+ # incorrect information. Grab will synchronize data to the
5277
+ # Waypoint environment on weekly basis.
5278
+ #
5279
+ # * Interpolated POI: Interpolated POI is a temporary POI generated
5280
+ # in real time when serving a request, and it will be marked as
5281
+ # derived in the `place.result_type` field in the response. The
5282
+ # information of interpolated POIs will be retained for at least
5283
+ # 30 days, which means that within 30 days, you are able to obtain
5284
+ # POI details by Place ID from Place Details API. After 30 days,
5285
+ # the interpolated POIs(both Place ID and details) may expire and
5286
+ # inaccessible from the Places Details API.
5173
5287
  # @return [String]
5174
5288
  #
5175
5289
  # @!attribute [rw] supplemental_categories
@@ -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.44.0'
55
+ GEM_VERSION = '1.46.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.44.0
4
+ version: 1.46.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-29 00:00:00.000000000 Z
11
+ date: 2024-01-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -72,7 +72,7 @@ licenses:
72
72
  metadata:
73
73
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-locationservice
74
74
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-locationservice/CHANGELOG.md
75
- post_install_message:
75
+ post_install_message:
76
76
  rdoc_options: []
77
77
  require_paths:
78
78
  - lib
@@ -87,8 +87,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
87
  - !ruby/object:Gem::Version
88
88
  version: '0'
89
89
  requirements: []
90
- rubygems_version: 3.1.6
91
- signing_key:
90
+ rubygems_version: 3.4.10
91
+ signing_key:
92
92
  specification_version: 4
93
93
  summary: AWS SDK for Ruby - Amazon Location Service
94
94
  test_files: []