aws-sdk-locationservice 1.30.0 → 1.32.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: 9c01507635f925a97100877ef93422c6e14fdaa6fe4736905bbd38e3e371bcd1
4
- data.tar.gz: ab03f621b085914333abefbb2a662a5931a4b589892a3c14a41258fceac6e183
3
+ metadata.gz: a9c121b4142b649163d2dfd00c177a06c7e3fce3c78229214a2ddd1ac8c8f3e7
4
+ data.tar.gz: 11c1d1c57071756663e4ca6267b9423363cceb87a8a8e5a186a65641930c4784
5
5
  SHA512:
6
- metadata.gz: '011288b6ecf831f3bb03eb07298993c7df411033e5b31216261dedd86afecc478c614c1f299fa809b7a5e13df56ddebd08a2faa9c79939536dfdf429abcddefb'
7
- data.tar.gz: 2db64936aacc1e4bae9864fc946126eedecec643bbe0f37fceef59b9e1e84af8104a4e8e4c79248c212e0b10707843b20f3f09aaa662074c928d44d0b0259717
6
+ metadata.gz: bf89e0d6e013f36df5fb89ba9878d594fe3b8b5e66c7330536349b6a7a5657869f987bfe571748e3580c7d8b80a69f884dd45e13a3b8f91dee1e31ee53a3d1b5
7
+ data.tar.gz: ddb5ee6788e01db55f0af4eabc3c5676fec9db3cdf15cdb1b8aff8a9c69e487fdbb30005ba1aeeb2c499bd06ab24ee073a235b68b0ff166ed7a9402aa0e7a3dc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.32.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.31.0 (2023-05-30)
10
+ ------------------
11
+
12
+ * Feature - This release adds API support for political views for the maps service APIs: CreateMap, UpdateMap, DescribeMap.
13
+
4
14
  1.30.0 (2023-03-07)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.30.0
1
+ 1.32.0
@@ -275,6 +275,11 @@ module Aws::LocationService
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -1530,6 +1535,7 @@ module Aws::LocationService
1530
1535
  #
1531
1536
  # resp = client.create_map({
1532
1537
  # configuration: { # required
1538
+ # political_view: "CountryCode3",
1533
1539
  # style: "MapStyle", # required
1534
1540
  # },
1535
1541
  # description: "ResourceDescription",
@@ -2239,6 +2245,7 @@ module Aws::LocationService
2239
2245
  #
2240
2246
  # @example Response structure
2241
2247
  #
2248
+ # resp.configuration.political_view #=> String
2242
2249
  # resp.configuration.style #=> String
2243
2250
  # resp.create_time #=> Time
2244
2251
  # resp.data_source #=> String
@@ -2675,7 +2682,14 @@ module Aws::LocationService
2675
2682
  # Sans Bold` \| `Amazon Ember Medium,Noto Sans Medium` \| `Amazon
2676
2683
  # Ember Regular Italic,Noto Sans Italic` \| `Amazon Ember Condensed RC
2677
2684
  # Regular,Noto Sans Regular` \| `Amazon Ember Condensed RC Bold,Noto
2678
- # Sans Bold`
2685
+ # Sans Bold` \| `Amazon Ember Regular,Noto Sans Regular,Noto Sans
2686
+ # Arabic Regular` \| `Amazon Ember Condensed RC Bold,Noto Sans
2687
+ # Bold,Noto Sans Arabic Condensed Bold` \| `Amazon Ember Bold,Noto
2688
+ # Sans Bold,Noto Sans Arabic Bold` \| `Amazon Ember Regular
2689
+ # Italic,Noto Sans Italic,Noto Sans Arabic Regular` \| `Amazon Ember
2690
+ # Condensed RC Regular,Noto Sans Regular,Noto Sans Arabic Condensed
2691
+ # Regular` \| `Amazon Ember Medium,Noto Sans Medium,Noto Sans Arabic
2692
+ # Medium`
2679
2693
  #
2680
2694
  # ^
2681
2695
  #
@@ -4173,6 +4187,10 @@ module Aws::LocationService
4173
4187
 
4174
4188
  # Updates the specified properties of a given map resource.
4175
4189
  #
4190
+ # @option params [Types::MapConfigurationUpdate] :configuration_update
4191
+ # Updates the parts of the map configuration that can be updated,
4192
+ # including the political view.
4193
+ #
4176
4194
  # @option params [String] :description
4177
4195
  # Updates the description for the map resource.
4178
4196
  #
@@ -4192,6 +4210,9 @@ module Aws::LocationService
4192
4210
  # @example Request syntax with placeholder values
4193
4211
  #
4194
4212
  # resp = client.update_map({
4213
+ # configuration_update: {
4214
+ # political_view: "CountryCode3OrEmpty",
4215
+ # },
4195
4216
  # description: "ResourceDescription",
4196
4217
  # map_name: "ResourceName", # required
4197
4218
  # pricing_plan: "RequestBasedUsage", # accepts RequestBasedUsage, MobileAssetTracking, MobileAssetManagement
@@ -4388,7 +4409,7 @@ module Aws::LocationService
4388
4409
  params: params,
4389
4410
  config: config)
4390
4411
  context[:gem_name] = 'aws-sdk-locationservice'
4391
- context[:gem_version] = '1.30.0'
4412
+ context[:gem_version] = '1.32.0'
4392
4413
  Seahorse::Client::Request.new(handlers, context)
4393
4414
  end
4394
4415
 
@@ -84,6 +84,8 @@ module Aws::LocationService
84
84
  Circle = Shapes::StructureShape.new(name: 'Circle')
85
85
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
86
86
  CountryCode = Shapes::StringShape.new(name: 'CountryCode')
87
+ CountryCode3 = Shapes::StringShape.new(name: 'CountryCode3')
88
+ CountryCode3OrEmpty = Shapes::StringShape.new(name: 'CountryCode3OrEmpty')
87
89
  CountryCodeList = Shapes::ListShape.new(name: 'CountryCodeList')
88
90
  CreateGeofenceCollectionRequest = Shapes::StructureShape.new(name: 'CreateGeofenceCollectionRequest')
89
91
  CreateGeofenceCollectionResponse = Shapes::StructureShape.new(name: 'CreateGeofenceCollectionResponse')
@@ -214,6 +216,7 @@ module Aws::LocationService
214
216
  ListTrackersResponseEntry = Shapes::StructureShape.new(name: 'ListTrackersResponseEntry')
215
217
  ListTrackersResponseEntryList = Shapes::ListShape.new(name: 'ListTrackersResponseEntryList')
216
218
  MapConfiguration = Shapes::StructureShape.new(name: 'MapConfiguration')
219
+ MapConfigurationUpdate = Shapes::StructureShape.new(name: 'MapConfigurationUpdate')
217
220
  MapStyle = Shapes::StringShape.new(name: 'MapStyle')
218
221
  Place = Shapes::StructureShape.new(name: 'Place')
219
222
  PlaceGeometry = Shapes::StructureShape.new(name: 'PlaceGeometry')
@@ -567,7 +570,7 @@ module Aws::LocationService
567
570
  CreatePlaceIndexRequest.struct_class = Types::CreatePlaceIndexRequest
568
571
 
569
572
  CreatePlaceIndexResponse.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreateTime"))
570
- CreatePlaceIndexResponse.add_member(:index_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "IndexArn"))
573
+ CreatePlaceIndexResponse.add_member(:index_arn, Shapes::ShapeRef.new(shape: GeoArn, required: true, location_name: "IndexArn"))
571
574
  CreatePlaceIndexResponse.add_member(:index_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "IndexName"))
572
575
  CreatePlaceIndexResponse.struct_class = Types::CreatePlaceIndexResponse
573
576
 
@@ -578,7 +581,7 @@ module Aws::LocationService
578
581
  CreateRouteCalculatorRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
579
582
  CreateRouteCalculatorRequest.struct_class = Types::CreateRouteCalculatorRequest
580
583
 
581
- CreateRouteCalculatorResponse.add_member(:calculator_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "CalculatorArn"))
584
+ CreateRouteCalculatorResponse.add_member(:calculator_arn, Shapes::ShapeRef.new(shape: GeoArn, required: true, location_name: "CalculatorArn"))
582
585
  CreateRouteCalculatorResponse.add_member(:calculator_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "CalculatorName"))
583
586
  CreateRouteCalculatorResponse.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreateTime"))
584
587
  CreateRouteCalculatorResponse.struct_class = Types::CreateRouteCalculatorResponse
@@ -679,7 +682,7 @@ module Aws::LocationService
679
682
  DescribePlaceIndexResponse.add_member(:data_source, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DataSource"))
680
683
  DescribePlaceIndexResponse.add_member(:data_source_configuration, Shapes::ShapeRef.new(shape: DataSourceConfiguration, required: true, location_name: "DataSourceConfiguration"))
681
684
  DescribePlaceIndexResponse.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, required: true, location_name: "Description"))
682
- DescribePlaceIndexResponse.add_member(:index_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "IndexArn"))
685
+ DescribePlaceIndexResponse.add_member(:index_arn, Shapes::ShapeRef.new(shape: GeoArn, required: true, location_name: "IndexArn"))
683
686
  DescribePlaceIndexResponse.add_member(:index_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "IndexName"))
684
687
  DescribePlaceIndexResponse.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. Always returns RequestBasedUsage."}))
685
688
  DescribePlaceIndexResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
@@ -689,7 +692,7 @@ module Aws::LocationService
689
692
  DescribeRouteCalculatorRequest.add_member(:calculator_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "CalculatorName"))
690
693
  DescribeRouteCalculatorRequest.struct_class = Types::DescribeRouteCalculatorRequest
691
694
 
692
- DescribeRouteCalculatorResponse.add_member(:calculator_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "CalculatorArn"))
695
+ DescribeRouteCalculatorResponse.add_member(:calculator_arn, Shapes::ShapeRef.new(shape: GeoArn, required: true, location_name: "CalculatorArn"))
693
696
  DescribeRouteCalculatorResponse.add_member(:calculator_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "CalculatorName"))
694
697
  DescribeRouteCalculatorResponse.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreateTime"))
695
698
  DescribeRouteCalculatorResponse.add_member(:data_source, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DataSource"))
@@ -1016,9 +1019,13 @@ module Aws::LocationService
1016
1019
 
1017
1020
  ListTrackersResponseEntryList.member = Shapes::ShapeRef.new(shape: ListTrackersResponseEntry)
1018
1021
 
1022
+ MapConfiguration.add_member(:political_view, Shapes::ShapeRef.new(shape: CountryCode3, location_name: "PoliticalView"))
1019
1023
  MapConfiguration.add_member(:style, Shapes::ShapeRef.new(shape: MapStyle, required: true, location_name: "Style"))
1020
1024
  MapConfiguration.struct_class = Types::MapConfiguration
1021
1025
 
1026
+ MapConfigurationUpdate.add_member(:political_view, Shapes::ShapeRef.new(shape: CountryCode3OrEmpty, location_name: "PoliticalView"))
1027
+ MapConfigurationUpdate.struct_class = Types::MapConfigurationUpdate
1028
+
1022
1029
  Place.add_member(:address_number, Shapes::ShapeRef.new(shape: String, location_name: "AddressNumber"))
1023
1030
  Place.add_member(:country, Shapes::ShapeRef.new(shape: String, location_name: "Country"))
1024
1031
  Place.add_member(:geometry, Shapes::ShapeRef.new(shape: PlaceGeometry, required: true, location_name: "Geometry"))
@@ -1224,6 +1231,7 @@ module Aws::LocationService
1224
1231
  UpdateKeyResponse.add_member(:update_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "UpdateTime"))
1225
1232
  UpdateKeyResponse.struct_class = Types::UpdateKeyResponse
1226
1233
 
1234
+ UpdateMapRequest.add_member(:configuration_update, Shapes::ShapeRef.new(shape: MapConfigurationUpdate, location_name: "ConfigurationUpdate"))
1227
1235
  UpdateMapRequest.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
1228
1236
  UpdateMapRequest.add_member(:map_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "MapName"))
1229
1237
  UpdateMapRequest.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."}))
@@ -1240,7 +1248,7 @@ module Aws::LocationService
1240
1248
  UpdatePlaceIndexRequest.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."}))
1241
1249
  UpdatePlaceIndexRequest.struct_class = Types::UpdatePlaceIndexRequest
1242
1250
 
1243
- UpdatePlaceIndexResponse.add_member(:index_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "IndexArn"))
1251
+ UpdatePlaceIndexResponse.add_member(:index_arn, Shapes::ShapeRef.new(shape: GeoArn, required: true, location_name: "IndexArn"))
1244
1252
  UpdatePlaceIndexResponse.add_member(:index_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "IndexName"))
1245
1253
  UpdatePlaceIndexResponse.add_member(:update_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "UpdateTime"))
1246
1254
  UpdatePlaceIndexResponse.struct_class = Types::UpdatePlaceIndexResponse
@@ -1250,7 +1258,7 @@ module Aws::LocationService
1250
1258
  UpdateRouteCalculatorRequest.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."}))
1251
1259
  UpdateRouteCalculatorRequest.struct_class = Types::UpdateRouteCalculatorRequest
1252
1260
 
1253
- UpdateRouteCalculatorResponse.add_member(:calculator_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "CalculatorArn"))
1261
+ UpdateRouteCalculatorResponse.add_member(:calculator_arn, Shapes::ShapeRef.new(shape: GeoArn, required: true, location_name: "CalculatorArn"))
1254
1262
  UpdateRouteCalculatorResponse.add_member(:calculator_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "CalculatorName"))
1255
1263
  UpdateRouteCalculatorResponse.add_member(:update_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "UpdateTime"))
1256
1264
  UpdateRouteCalculatorResponse.struct_class = Types::UpdateRouteCalculatorResponse
@@ -1540,6 +1548,7 @@ module Aws::LocationService
1540
1548
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1541
1549
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1542
1550
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1551
+ o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
1543
1552
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1544
1553
  end)
1545
1554
 
@@ -1054,7 +1054,7 @@ module Aws::LocationService
1054
1054
  #
1055
1055
  # For example, a route with a departure position and destination
1056
1056
  # position returns one leg with the positions [snapped to a nearby
1057
- # road][1]\:
1057
+ # road][1]:
1058
1058
  #
1059
1059
  # * The `StartPosition` is the departure position.
1060
1060
  #
@@ -3091,7 +3091,14 @@ module Aws::LocationService
3091
3091
  # Bold,Noto Sans Bold` \| `Amazon Ember Medium,Noto Sans Medium` \|
3092
3092
  # `Amazon Ember Regular Italic,Noto Sans Italic` \| `Amazon Ember
3093
3093
  # Condensed RC Regular,Noto Sans Regular` \| `Amazon Ember Condensed
3094
- # RC Bold,Noto Sans Bold`
3094
+ # RC Bold,Noto Sans Bold` \| `Amazon Ember Regular,Noto Sans
3095
+ # Regular,Noto Sans Arabic Regular` \| `Amazon Ember Condensed RC
3096
+ # Bold,Noto Sans Bold,Noto Sans Arabic Condensed Bold` \| `Amazon
3097
+ # Ember Bold,Noto Sans Bold,Noto Sans Arabic Bold` \| `Amazon Ember
3098
+ # Regular Italic,Noto Sans Italic,Noto Sans Arabic Regular` \|
3099
+ # `Amazon Ember Condensed RC Regular,Noto Sans Regular,Noto Sans
3100
+ # Arabic Condensed Regular` \| `Amazon Ember Medium,Noto Sans
3101
+ # Medium,Noto Sans Arabic Medium`
3095
3102
  #
3096
3103
  # ^
3097
3104
  #
@@ -3402,7 +3409,7 @@ module Aws::LocationService
3402
3409
  #
3403
3410
  # For example, a route with a departure position and destination
3404
3411
  # position returns one leg with the positions [snapped to a nearby
3405
- # road][1]\:
3412
+ # road][1]:
3406
3413
  #
3407
3414
  # * The `StartPosition` is the departure position.
3408
3415
  #
@@ -4401,10 +4408,27 @@ module Aws::LocationService
4401
4408
 
4402
4409
  # Specifies the map tile style selected from an available provider.
4403
4410
  #
4411
+ # @!attribute [rw] political_view
4412
+ # Specifies the political view for the style. Leave unset to not use a
4413
+ # political view, or, for styles that support specific political
4414
+ # views, you can choose a view, such as `IND` for the Indian view.
4415
+ #
4416
+ # Default is unset.
4417
+ #
4418
+ # <note markdown="1"> Not all map resources or styles support political view styles. See
4419
+ # [Political views][1] for more information.
4420
+ #
4421
+ # </note>
4422
+ #
4423
+ #
4424
+ #
4425
+ # [1]: https://docs.aws.amazon.com/location/latest/developerguide/map-concepts.html#political-views
4426
+ # @return [String]
4427
+ #
4404
4428
  # @!attribute [rw] style
4405
4429
  # Specifies the map style selected from an available data provider.
4406
4430
  #
4407
- # Valid [Esri map styles][1]\:
4431
+ # Valid [Esri map styles][1]:
4408
4432
  #
4409
4433
  # * `VectorEsriDarkGrayCanvas` – The Esri Dark Gray Canvas map style.
4410
4434
  # A vector basemap with a dark gray, neutral background with minimal
@@ -4424,17 +4448,17 @@ module Aws::LocationService
4424
4448
  # * `VectorEsriTopographic` – The Esri Light map style, which provides
4425
4449
  # a detailed vector basemap with a classic Esri map style.
4426
4450
  #
4427
- # * `VectorEsriStreets` – The Esri World Streets map style, which
4428
- # provides a detailed vector basemap for the world symbolized with a
4429
- # classic Esri street map style. The vector tile layer is similar in
4430
- # content and style to the World Street Map raster map.
4451
+ # * `VectorEsriStreets` – The Esri Street Map style, which provides a
4452
+ # detailed vector basemap for the world symbolized with a classic
4453
+ # Esri street map style. The vector tile layer is similar in content
4454
+ # and style to the World Street Map raster map.
4431
4455
  #
4432
- # * `VectorEsriNavigation` – The Esri World Navigation map style,
4433
- # which provides a detailed basemap for the world symbolized with a
4434
- # custom navigation map style that's designed for use during the
4435
- # day in mobile devices.
4456
+ # * `VectorEsriNavigation` – The Esri Navigation map style, which
4457
+ # provides a detailed basemap for the world symbolized with a custom
4458
+ # navigation map style that's designed for use during the day in
4459
+ # mobile devices.
4436
4460
  #
4437
- # Valid [HERE Technologies map styles][2]\:
4461
+ # Valid [HERE Technologies map styles][2]:
4438
4462
  #
4439
4463
  # * `VectorHereContrast` – The HERE Contrast (Berlin) map style is a
4440
4464
  # high contrast detailed base map of the world that blends 3D and 2D
@@ -4471,7 +4495,7 @@ module Aws::LocationService
4471
4495
  #
4472
4496
  # </note>
4473
4497
  #
4474
- # Valid [GrabMaps map styles][3]\:
4498
+ # Valid [GrabMaps map styles][3]:
4475
4499
  #
4476
4500
  # * `VectorGrabStandardLight` – The Grab Standard Light map style
4477
4501
  # provides a basemap with detailed land use coloring, area names,
@@ -4487,7 +4511,7 @@ module Aws::LocationService
4487
4511
  #
4488
4512
  # </note>
4489
4513
  #
4490
- # Valid [Open Data map styles][5]\:
4514
+ # Valid [Open Data map styles][5]:
4491
4515
  #
4492
4516
  # * `VectorOpenDataStandardLight` – The Open Data Standard Light map
4493
4517
  # style provides a detailed basemap for the world suitable for
@@ -4522,11 +4546,38 @@ module Aws::LocationService
4522
4546
  # @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/MapConfiguration AWS API Documentation
4523
4547
  #
4524
4548
  class MapConfiguration < Struct.new(
4549
+ :political_view,
4525
4550
  :style)
4526
4551
  SENSITIVE = []
4527
4552
  include Aws::Structure
4528
4553
  end
4529
4554
 
4555
+ # Specifies the political view for the style.
4556
+ #
4557
+ # @!attribute [rw] political_view
4558
+ # Specifies the political view for the style. Set to an empty string
4559
+ # to not use a political view, or, for styles that support specific
4560
+ # political views, you can choose a view, such as `IND` for the Indian
4561
+ # view.
4562
+ #
4563
+ # <note markdown="1"> Not all map resources or styles support political view styles. See
4564
+ # [Political views][1] for more information.
4565
+ #
4566
+ # </note>
4567
+ #
4568
+ #
4569
+ #
4570
+ # [1]: https://docs.aws.amazon.com/location/latest/developerguide/map-concepts.html#political-views
4571
+ # @return [String]
4572
+ #
4573
+ # @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/MapConfigurationUpdate AWS API Documentation
4574
+ #
4575
+ class MapConfigurationUpdate < Struct.new(
4576
+ :political_view)
4577
+ SENSITIVE = []
4578
+ include Aws::Structure
4579
+ end
4580
+
4530
4581
  # Contains details about addresses or points of interest that match the
4531
4582
  # search criteria.
4532
4583
  #
@@ -5907,6 +5958,11 @@ module Aws::LocationService
5907
5958
  include Aws::Structure
5908
5959
  end
5909
5960
 
5961
+ # @!attribute [rw] configuration_update
5962
+ # Updates the parts of the map configuration that can be updated,
5963
+ # including the political view.
5964
+ # @return [Types::MapConfigurationUpdate]
5965
+ #
5910
5966
  # @!attribute [rw] description
5911
5967
  # Updates the description for the map resource.
5912
5968
  # @return [String]
@@ -5923,6 +5979,7 @@ module Aws::LocationService
5923
5979
  # @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/UpdateMapRequest AWS API Documentation
5924
5980
  #
5925
5981
  class UpdateMapRequest < Struct.new(
5982
+ :configuration_update,
5926
5983
  :description,
5927
5984
  :map_name,
5928
5985
  :pricing_plan)
@@ -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.30.0'
55
+ GEM_VERSION = '1.32.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.30.0
4
+ version: 1.32.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-03-07 00:00:00.000000000 Z
11
+ date: 2023-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.165.0
22
+ version: 3.174.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement