aws-sdk-locationservice 1.29.0 → 1.31.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-locationservice/client.rb +29 -11
- data/lib/aws-sdk-locationservice/client_api.rb +15 -6
- data/lib/aws-sdk-locationservice/types.rb +101 -33
- data/lib/aws-sdk-locationservice.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e309b0a9cb77d8badbc6c05390a798b569f9bd93bfe2b6f1ca2a8e845ecfe246
|
4
|
+
data.tar.gz: 1a37cd9b0501ad0e21f5be960fa70ac9e2faedf0fae3f3cf6a487dd598a1754c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff8dc5ed727c34c682efbd33d45a5f3e40dbe836a2b2295f742f5260d6ff6fb4ec83478b0ed5b83719e7be93a481aedc3b8bc1d0c36bf04f206cea63aae5e029
|
7
|
+
data.tar.gz: a2905fe2cd43bf14e76de0f6215fd942969c6f76dbcc26b0d7fd88fefcc67897fc26a8547b31e6fc60507bd3f615828a0e98d9cdd4d333f4e2ff5d6f9c45d507
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.31.0 (2023-05-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds API support for political views for the maps service APIs: CreateMap, UpdateMap, DescribeMap.
|
8
|
+
|
9
|
+
1.30.0 (2023-03-07)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Documentation update for the release of 3 additional map styles for use with Open Data Maps: Open Data Standard Dark, Open Data Visualization Light & Open Data Visualization Dark.
|
13
|
+
|
4
14
|
1.29.0 (2023-02-23)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.31.0
|
@@ -1530,6 +1530,7 @@ module Aws::LocationService
|
|
1530
1530
|
#
|
1531
1531
|
# resp = client.create_map({
|
1532
1532
|
# configuration: { # required
|
1533
|
+
# political_view: "CountryCode3",
|
1533
1534
|
# style: "MapStyle", # required
|
1534
1535
|
# },
|
1535
1536
|
# description: "ResourceDescription",
|
@@ -2239,6 +2240,7 @@ module Aws::LocationService
|
|
2239
2240
|
#
|
2240
2241
|
# @example Response structure
|
2241
2242
|
#
|
2243
|
+
# resp.configuration.political_view #=> String
|
2242
2244
|
# resp.configuration.style #=> String
|
2243
2245
|
# resp.create_time #=> Time
|
2244
2246
|
# resp.data_source #=> String
|
@@ -2667,19 +2669,28 @@ module Aws::LocationService
|
|
2667
2669
|
#
|
2668
2670
|
# ^
|
2669
2671
|
#
|
2670
|
-
# Valid font stacks for [Open Data
|
2671
|
-
#
|
2672
|
-
# * VectorOpenDataStandardLight
|
2673
|
-
#
|
2674
|
-
#
|
2675
|
-
#
|
2676
|
-
#
|
2672
|
+
# Valid font stacks for [Open Data][4] styles:
|
2673
|
+
#
|
2674
|
+
# * VectorOpenDataStandardLight, VectorOpenDataStandardDark,
|
2675
|
+
# VectorOpenDataVisualizationLight, VectorOpenDataVisualizationDark –
|
2676
|
+
# `Amazon Ember Regular,Noto Sans Regular` \| `Amazon Ember Bold,Noto
|
2677
|
+
# Sans Bold` \| `Amazon Ember Medium,Noto Sans Medium` \| `Amazon
|
2678
|
+
# Ember Regular Italic,Noto Sans Italic` \| `Amazon Ember Condensed RC
|
2679
|
+
# Regular,Noto Sans Regular` \| `Amazon Ember Condensed RC Bold,Noto
|
2680
|
+
# Sans Bold` \| `Amazon Ember Regular,Noto Sans Regular,Noto Sans
|
2681
|
+
# Arabic Regular` \| `Amazon Ember Condensed RC Bold,Noto Sans
|
2682
|
+
# Bold,Noto Sans Arabic Condensed Bold` \| `Amazon Ember Bold,Noto
|
2683
|
+
# Sans Bold,Noto Sans Arabic Bold` \| `Amazon Ember Regular
|
2684
|
+
# Italic,Noto Sans Italic,Noto Sans Arabic Regular` \| `Amazon Ember
|
2685
|
+
# Condensed RC Regular,Noto Sans Regular,Noto Sans Arabic Condensed
|
2686
|
+
# Regular` \| `Amazon Ember Medium,Noto Sans Medium,Noto Sans Arabic
|
2687
|
+
# Medium`
|
2677
2688
|
#
|
2678
2689
|
# ^
|
2679
2690
|
#
|
2680
|
-
# <note markdown="1"> The fonts used by
|
2681
|
-
#
|
2682
|
-
#
|
2691
|
+
# <note markdown="1"> The fonts used by the Open Data map styles are combined fonts that use
|
2692
|
+
# `Amazon Ember` for most glyphs but `Noto Sans` for glyphs unsupported
|
2693
|
+
# by `Amazon Ember`.
|
2683
2694
|
#
|
2684
2695
|
# </note>
|
2685
2696
|
#
|
@@ -4171,6 +4182,10 @@ module Aws::LocationService
|
|
4171
4182
|
|
4172
4183
|
# Updates the specified properties of a given map resource.
|
4173
4184
|
#
|
4185
|
+
# @option params [Types::MapConfigurationUpdate] :configuration_update
|
4186
|
+
# Updates the parts of the map configuration that can be updated,
|
4187
|
+
# including the political view.
|
4188
|
+
#
|
4174
4189
|
# @option params [String] :description
|
4175
4190
|
# Updates the description for the map resource.
|
4176
4191
|
#
|
@@ -4190,6 +4205,9 @@ module Aws::LocationService
|
|
4190
4205
|
# @example Request syntax with placeholder values
|
4191
4206
|
#
|
4192
4207
|
# resp = client.update_map({
|
4208
|
+
# configuration_update: {
|
4209
|
+
# political_view: "CountryCode3OrEmpty",
|
4210
|
+
# },
|
4193
4211
|
# description: "ResourceDescription",
|
4194
4212
|
# map_name: "ResourceName", # required
|
4195
4213
|
# pricing_plan: "RequestBasedUsage", # accepts RequestBasedUsage, MobileAssetTracking, MobileAssetManagement
|
@@ -4386,7 +4404,7 @@ module Aws::LocationService
|
|
4386
4404
|
params: params,
|
4387
4405
|
config: config)
|
4388
4406
|
context[:gem_name] = 'aws-sdk-locationservice'
|
4389
|
-
context[:gem_version] = '1.
|
4407
|
+
context[:gem_version] = '1.31.0'
|
4390
4408
|
Seahorse::Client::Request.new(handlers, context)
|
4391
4409
|
end
|
4392
4410
|
|
@@ -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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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
|
#
|
@@ -3083,18 +3083,27 @@ module Aws::LocationService
|
|
3083
3083
|
#
|
3084
3084
|
# ^
|
3085
3085
|
#
|
3086
|
-
# Valid font stacks for [Open Data
|
3087
|
-
#
|
3088
|
-
# * VectorOpenDataStandardLight
|
3089
|
-
#
|
3090
|
-
#
|
3091
|
-
#
|
3092
|
-
#
|
3086
|
+
# Valid font stacks for [Open Data][4] styles:
|
3087
|
+
#
|
3088
|
+
# * VectorOpenDataStandardLight, VectorOpenDataStandardDark,
|
3089
|
+
# VectorOpenDataVisualizationLight, VectorOpenDataVisualizationDark
|
3090
|
+
# – `Amazon Ember Regular,Noto Sans Regular` \| `Amazon Ember
|
3091
|
+
# Bold,Noto Sans Bold` \| `Amazon Ember Medium,Noto Sans Medium` \|
|
3092
|
+
# `Amazon Ember Regular Italic,Noto Sans Italic` \| `Amazon Ember
|
3093
|
+
# Condensed RC Regular,Noto Sans Regular` \| `Amazon Ember Condensed
|
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`
|
3093
3102
|
#
|
3094
3103
|
# ^
|
3095
3104
|
#
|
3096
|
-
# <note markdown="1"> The fonts used by
|
3097
|
-
#
|
3105
|
+
# <note markdown="1"> The fonts used by the Open Data map styles are combined fonts that
|
3106
|
+
# use `Amazon Ember` for most glyphs but `Noto Sans` for glyphs
|
3098
3107
|
# unsupported by `Amazon Ember`.
|
3099
3108
|
#
|
3100
3109
|
# </note>
|
@@ -3400,7 +3409,7 @@ module Aws::LocationService
|
|
3400
3409
|
#
|
3401
3410
|
# For example, a route with a departure position and destination
|
3402
3411
|
# position returns one leg with the positions [snapped to a nearby
|
3403
|
-
# road][1]
|
3412
|
+
# road][1]:
|
3404
3413
|
#
|
3405
3414
|
# * The `StartPosition` is the departure position.
|
3406
3415
|
#
|
@@ -4399,10 +4408,27 @@ module Aws::LocationService
|
|
4399
4408
|
|
4400
4409
|
# Specifies the map tile style selected from an available provider.
|
4401
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
|
+
#
|
4402
4428
|
# @!attribute [rw] style
|
4403
4429
|
# Specifies the map style selected from an available data provider.
|
4404
4430
|
#
|
4405
|
-
# Valid [Esri map styles][1]
|
4431
|
+
# Valid [Esri map styles][1]:
|
4406
4432
|
#
|
4407
4433
|
# * `VectorEsriDarkGrayCanvas` – The Esri Dark Gray Canvas map style.
|
4408
4434
|
# A vector basemap with a dark gray, neutral background with minimal
|
@@ -4422,17 +4448,17 @@ module Aws::LocationService
|
|
4422
4448
|
# * `VectorEsriTopographic` – The Esri Light map style, which provides
|
4423
4449
|
# a detailed vector basemap with a classic Esri map style.
|
4424
4450
|
#
|
4425
|
-
# * `VectorEsriStreets` – The Esri
|
4426
|
-
#
|
4427
|
-
#
|
4428
|
-
#
|
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.
|
4429
4455
|
#
|
4430
|
-
# * `VectorEsriNavigation` – The Esri
|
4431
|
-
#
|
4432
|
-
#
|
4433
|
-
#
|
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.
|
4434
4460
|
#
|
4435
|
-
# Valid [HERE Technologies map styles][2]
|
4461
|
+
# Valid [HERE Technologies map styles][2]:
|
4436
4462
|
#
|
4437
4463
|
# * `VectorHereContrast` – The HERE Contrast (Berlin) map style is a
|
4438
4464
|
# high contrast detailed base map of the world that blends 3D and 2D
|
@@ -4469,7 +4495,7 @@ module Aws::LocationService
|
|
4469
4495
|
#
|
4470
4496
|
# </note>
|
4471
4497
|
#
|
4472
|
-
# Valid [GrabMaps map styles][3]
|
4498
|
+
# Valid [GrabMaps map styles][3]:
|
4473
4499
|
#
|
4474
4500
|
# * `VectorGrabStandardLight` – The Grab Standard Light map style
|
4475
4501
|
# provides a basemap with detailed land use coloring, area names,
|
@@ -4485,18 +4511,28 @@ module Aws::LocationService
|
|
4485
4511
|
#
|
4486
4512
|
# </note>
|
4487
4513
|
#
|
4488
|
-
# Valid [Open Data
|
4514
|
+
# Valid [Open Data map styles][5]:
|
4515
|
+
#
|
4516
|
+
# * `VectorOpenDataStandardLight` – The Open Data Standard Light map
|
4517
|
+
# style provides a detailed basemap for the world suitable for
|
4518
|
+
# website and mobile application use. The map includes highways
|
4519
|
+
# major roads, minor roads, railways, water features, cities, parks,
|
4520
|
+
# landmarks, building footprints, and administrative boundaries.
|
4489
4521
|
#
|
4490
|
-
# * `
|
4491
|
-
#
|
4492
|
-
# suitable for website and mobile application use. The map
|
4493
|
-
# highways major roads, minor roads, railways, water
|
4494
|
-
# cities, parks, landmarks, building footprints, and
|
4495
|
-
# boundaries.
|
4522
|
+
# * `VectorOpenDataStandardDark` – Open Data Standard Dark is a
|
4523
|
+
# dark-themed map style that provides a detailed basemap for the
|
4524
|
+
# world suitable for website and mobile application use. The map
|
4525
|
+
# includes highways major roads, minor roads, railways, water
|
4526
|
+
# features, cities, parks, landmarks, building footprints, and
|
4527
|
+
# administrative boundaries.
|
4496
4528
|
#
|
4497
|
-
#
|
4498
|
-
#
|
4499
|
-
#
|
4529
|
+
# * `VectorOpenDataVisualizationLight` – The Open Data Visualization
|
4530
|
+
# Light map style is a light-themed style with muted colors and
|
4531
|
+
# fewer features that aids in understanding overlaid data.
|
4532
|
+
#
|
4533
|
+
# * `VectorOpenDataVisualizationDark` – The Open Data Visualization
|
4534
|
+
# Dark map style is a dark-themed style with muted colors and fewer
|
4535
|
+
# features that aids in understanding overlaid data.
|
4500
4536
|
#
|
4501
4537
|
#
|
4502
4538
|
#
|
@@ -4505,17 +4541,43 @@ module Aws::LocationService
|
|
4505
4541
|
# [3]: https://docs.aws.amazon.com/location/latest/developerguide/grab.html
|
4506
4542
|
# [4]: https://docs.aws.amazon.com/location/latest/developerguide/grab.html#grab-coverage-area
|
4507
4543
|
# [5]: https://docs.aws.amazon.com/location/latest/developerguide/open-data.html
|
4508
|
-
# [6]: https://docs.aws.amazon.com/location/latest/developerguide/open-data.html#open-data-preview
|
4509
4544
|
# @return [String]
|
4510
4545
|
#
|
4511
4546
|
# @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/MapConfiguration AWS API Documentation
|
4512
4547
|
#
|
4513
4548
|
class MapConfiguration < Struct.new(
|
4549
|
+
:political_view,
|
4514
4550
|
:style)
|
4515
4551
|
SENSITIVE = []
|
4516
4552
|
include Aws::Structure
|
4517
4553
|
end
|
4518
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
|
+
|
4519
4581
|
# Contains details about addresses or points of interest that match the
|
4520
4582
|
# search criteria.
|
4521
4583
|
#
|
@@ -5896,6 +5958,11 @@ module Aws::LocationService
|
|
5896
5958
|
include Aws::Structure
|
5897
5959
|
end
|
5898
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
|
+
#
|
5899
5966
|
# @!attribute [rw] description
|
5900
5967
|
# Updates the description for the map resource.
|
5901
5968
|
# @return [String]
|
@@ -5912,6 +5979,7 @@ module Aws::LocationService
|
|
5912
5979
|
# @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/UpdateMapRequest AWS API Documentation
|
5913
5980
|
#
|
5914
5981
|
class UpdateMapRequest < Struct.new(
|
5982
|
+
:configuration_update,
|
5915
5983
|
:description,
|
5916
5984
|
:map_name,
|
5917
5985
|
:pricing_plan)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-locationservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.31.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-05-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|