aws-sdk-locationservice 1.50.0 → 1.52.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 +1039 -863
- data/lib/aws-sdk-locationservice/client_api.rb +382 -212
- data/lib/aws-sdk-locationservice/endpoints.rb +28 -0
- data/lib/aws-sdk-locationservice/errors.rb +5 -5
- data/lib/aws-sdk-locationservice/plugins/endpoints.rb +4 -0
- data/lib/aws-sdk-locationservice/types.rb +2158 -1749
- data/lib/aws-sdk-locationservice.rb +1 -1
- data/sig/client.rbs +283 -202
- data/sig/errors.rbs +1 -1
- data/sig/types.rbs +327 -215
- metadata +4 -4
data/sig/types.rbs
CHANGED
@@ -20,14 +20,14 @@ module Aws::LocationService
|
|
20
20
|
|
21
21
|
class ApiKeyRestrictions
|
22
22
|
attr_accessor allow_actions: ::Array[::String]
|
23
|
-
attr_accessor allow_referers: ::Array[::String]
|
24
23
|
attr_accessor allow_resources: ::Array[::String]
|
24
|
+
attr_accessor allow_referers: ::Array[::String]
|
25
25
|
SENSITIVE: []
|
26
26
|
end
|
27
27
|
|
28
28
|
class AssociateTrackerConsumerRequest
|
29
|
-
attr_accessor consumer_arn: ::String
|
30
29
|
attr_accessor tracker_name: ::String
|
30
|
+
attr_accessor consumer_arn: ::String
|
31
31
|
SENSITIVE: []
|
32
32
|
end
|
33
33
|
|
@@ -41,8 +41,8 @@ module Aws::LocationService
|
|
41
41
|
end
|
42
42
|
|
43
43
|
class BatchDeleteDevicePositionHistoryRequest
|
44
|
-
attr_accessor device_ids: ::Array[::String]
|
45
44
|
attr_accessor tracker_name: ::String
|
45
|
+
attr_accessor device_ids: ::Array[::String]
|
46
46
|
SENSITIVE: []
|
47
47
|
end
|
48
48
|
|
@@ -52,8 +52,8 @@ module Aws::LocationService
|
|
52
52
|
end
|
53
53
|
|
54
54
|
class BatchDeleteGeofenceError
|
55
|
-
attr_accessor error: Types::BatchItemError
|
56
55
|
attr_accessor geofence_id: ::String
|
56
|
+
attr_accessor error: Types::BatchItemError
|
57
57
|
SENSITIVE: []
|
58
58
|
end
|
59
59
|
|
@@ -70,8 +70,8 @@ module Aws::LocationService
|
|
70
70
|
|
71
71
|
class BatchEvaluateGeofencesError
|
72
72
|
attr_accessor device_id: ::String
|
73
|
-
attr_accessor error: Types::BatchItemError
|
74
73
|
attr_accessor sample_time: ::Time
|
74
|
+
attr_accessor error: Types::BatchItemError
|
75
75
|
SENSITIVE: []
|
76
76
|
end
|
77
77
|
|
@@ -93,14 +93,14 @@ module Aws::LocationService
|
|
93
93
|
end
|
94
94
|
|
95
95
|
class BatchGetDevicePositionRequest
|
96
|
-
attr_accessor device_ids: ::Array[::String]
|
97
96
|
attr_accessor tracker_name: ::String
|
97
|
+
attr_accessor device_ids: ::Array[::String]
|
98
98
|
SENSITIVE: []
|
99
99
|
end
|
100
100
|
|
101
101
|
class BatchGetDevicePositionResponse
|
102
|
-
attr_accessor device_positions: ::Array[Types::DevicePosition]
|
103
102
|
attr_accessor errors: ::Array[Types::BatchGetDevicePositionError]
|
103
|
+
attr_accessor device_positions: ::Array[Types::DevicePosition]
|
104
104
|
SENSITIVE: []
|
105
105
|
end
|
106
106
|
|
@@ -111,8 +111,8 @@ module Aws::LocationService
|
|
111
111
|
end
|
112
112
|
|
113
113
|
class BatchPutGeofenceError
|
114
|
-
attr_accessor error: Types::BatchItemError
|
115
114
|
attr_accessor geofence_id: ::String
|
115
|
+
attr_accessor error: Types::BatchItemError
|
116
116
|
SENSITIVE: []
|
117
117
|
end
|
118
118
|
|
@@ -124,28 +124,28 @@ module Aws::LocationService
|
|
124
124
|
|
125
125
|
class BatchPutGeofenceRequestEntry
|
126
126
|
attr_accessor geofence_id: ::String
|
127
|
-
attr_accessor geofence_properties: ::Hash[::String, ::String]
|
128
127
|
attr_accessor geometry: Types::GeofenceGeometry
|
128
|
+
attr_accessor geofence_properties: ::Hash[::String, ::String]
|
129
129
|
SENSITIVE: [:geofence_properties]
|
130
130
|
end
|
131
131
|
|
132
132
|
class BatchPutGeofenceResponse
|
133
|
-
attr_accessor errors: ::Array[Types::BatchPutGeofenceError]
|
134
133
|
attr_accessor successes: ::Array[Types::BatchPutGeofenceSuccess]
|
134
|
+
attr_accessor errors: ::Array[Types::BatchPutGeofenceError]
|
135
135
|
SENSITIVE: []
|
136
136
|
end
|
137
137
|
|
138
138
|
class BatchPutGeofenceSuccess
|
139
|
-
attr_accessor create_time: ::Time
|
140
139
|
attr_accessor geofence_id: ::String
|
140
|
+
attr_accessor create_time: ::Time
|
141
141
|
attr_accessor update_time: ::Time
|
142
142
|
SENSITIVE: []
|
143
143
|
end
|
144
144
|
|
145
145
|
class BatchUpdateDevicePositionError
|
146
146
|
attr_accessor device_id: ::String
|
147
|
-
attr_accessor error: Types::BatchItemError
|
148
147
|
attr_accessor sample_time: ::Time
|
148
|
+
attr_accessor error: Types::BatchItemError
|
149
149
|
SENSITIVE: []
|
150
150
|
end
|
151
151
|
|
@@ -168,15 +168,15 @@ module Aws::LocationService
|
|
168
168
|
|
169
169
|
class CalculateRouteMatrixRequest
|
170
170
|
attr_accessor calculator_name: ::String
|
171
|
-
attr_accessor car_mode_options: Types::CalculateRouteCarModeOptions
|
172
|
-
attr_accessor depart_now: bool
|
173
171
|
attr_accessor departure_positions: ::Array[::Array[::Float]]
|
174
|
-
attr_accessor departure_time: ::Time
|
175
172
|
attr_accessor destination_positions: ::Array[::Array[::Float]]
|
176
|
-
attr_accessor distance_unit: ("Kilometers" | "Miles")
|
177
|
-
attr_accessor key: ::String
|
178
173
|
attr_accessor travel_mode: ("Car" | "Truck" | "Walking" | "Bicycle" | "Motorcycle")
|
174
|
+
attr_accessor departure_time: ::Time
|
175
|
+
attr_accessor depart_now: bool
|
176
|
+
attr_accessor distance_unit: ("Kilometers" | "Miles")
|
177
|
+
attr_accessor car_mode_options: Types::CalculateRouteCarModeOptions
|
179
178
|
attr_accessor truck_mode_options: Types::CalculateRouteTruckModeOptions
|
179
|
+
attr_accessor key: ::String
|
180
180
|
SENSITIVE: [:key]
|
181
181
|
end
|
182
182
|
|
@@ -190,27 +190,27 @@ module Aws::LocationService
|
|
190
190
|
|
191
191
|
class CalculateRouteMatrixSummary
|
192
192
|
attr_accessor data_source: ::String
|
193
|
-
attr_accessor distance_unit: ("Kilometers" | "Miles")
|
194
|
-
attr_accessor error_count: ::Integer
|
195
193
|
attr_accessor route_count: ::Integer
|
194
|
+
attr_accessor error_count: ::Integer
|
195
|
+
attr_accessor distance_unit: ("Kilometers" | "Miles")
|
196
196
|
SENSITIVE: []
|
197
197
|
end
|
198
198
|
|
199
199
|
class CalculateRouteRequest
|
200
|
-
attr_accessor arrival_time: ::Time
|
201
200
|
attr_accessor calculator_name: ::String
|
202
|
-
attr_accessor car_mode_options: Types::CalculateRouteCarModeOptions
|
203
|
-
attr_accessor depart_now: bool
|
204
201
|
attr_accessor departure_position: ::Array[::Float]
|
205
|
-
attr_accessor departure_time: ::Time
|
206
202
|
attr_accessor destination_position: ::Array[::Float]
|
203
|
+
attr_accessor waypoint_positions: ::Array[::Array[::Float]]
|
204
|
+
attr_accessor travel_mode: ("Car" | "Truck" | "Walking" | "Bicycle" | "Motorcycle")
|
205
|
+
attr_accessor departure_time: ::Time
|
206
|
+
attr_accessor depart_now: bool
|
207
207
|
attr_accessor distance_unit: ("Kilometers" | "Miles")
|
208
208
|
attr_accessor include_leg_geometry: bool
|
209
|
-
attr_accessor
|
210
|
-
attr_accessor optimize_for: ("FastestRoute" | "ShortestRoute")
|
211
|
-
attr_accessor travel_mode: ("Car" | "Truck" | "Walking" | "Bicycle" | "Motorcycle")
|
209
|
+
attr_accessor car_mode_options: Types::CalculateRouteCarModeOptions
|
212
210
|
attr_accessor truck_mode_options: Types::CalculateRouteTruckModeOptions
|
213
|
-
attr_accessor
|
211
|
+
attr_accessor arrival_time: ::Time
|
212
|
+
attr_accessor optimize_for: ("FastestRoute" | "ShortestRoute")
|
213
|
+
attr_accessor key: ::String
|
214
214
|
SENSITIVE: [:departure_position, :destination_position, :key]
|
215
215
|
end
|
216
216
|
|
@@ -221,11 +221,11 @@ module Aws::LocationService
|
|
221
221
|
end
|
222
222
|
|
223
223
|
class CalculateRouteSummary
|
224
|
+
attr_accessor route_b_box: ::Array[::Float]
|
224
225
|
attr_accessor data_source: ::String
|
225
226
|
attr_accessor distance: ::Float
|
226
|
-
attr_accessor distance_unit: ("Kilometers" | "Miles")
|
227
227
|
attr_accessor duration_seconds: ::Float
|
228
|
-
attr_accessor
|
228
|
+
attr_accessor distance_unit: ("Kilometers" | "Miles")
|
229
229
|
SENSITIVE: [:route_b_box]
|
230
230
|
end
|
231
231
|
|
@@ -237,6 +237,11 @@ module Aws::LocationService
|
|
237
237
|
SENSITIVE: []
|
238
238
|
end
|
239
239
|
|
240
|
+
class CellSignals
|
241
|
+
attr_accessor lte_cell_details: ::Array[Types::LteCellDetails]
|
242
|
+
SENSITIVE: []
|
243
|
+
end
|
244
|
+
|
240
245
|
class Circle
|
241
246
|
attr_accessor center: ::Array[::Float]
|
242
247
|
attr_accessor radius: ::Float
|
@@ -250,105 +255,105 @@ module Aws::LocationService
|
|
250
255
|
|
251
256
|
class CreateGeofenceCollectionRequest
|
252
257
|
attr_accessor collection_name: ::String
|
253
|
-
attr_accessor description: ::String
|
254
|
-
attr_accessor kms_key_id: ::String
|
255
258
|
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
256
259
|
attr_accessor pricing_plan_data_source: ::String
|
260
|
+
attr_accessor description: ::String
|
257
261
|
attr_accessor tags: ::Hash[::String, ::String]
|
262
|
+
attr_accessor kms_key_id: ::String
|
258
263
|
SENSITIVE: []
|
259
264
|
end
|
260
265
|
|
261
266
|
class CreateGeofenceCollectionResponse
|
262
|
-
attr_accessor collection_arn: ::String
|
263
267
|
attr_accessor collection_name: ::String
|
268
|
+
attr_accessor collection_arn: ::String
|
264
269
|
attr_accessor create_time: ::Time
|
265
270
|
SENSITIVE: []
|
266
271
|
end
|
267
272
|
|
268
273
|
class CreateKeyRequest
|
274
|
+
attr_accessor key_name: ::String
|
275
|
+
attr_accessor restrictions: Types::ApiKeyRestrictions
|
269
276
|
attr_accessor description: ::String
|
270
277
|
attr_accessor expire_time: ::Time
|
271
|
-
attr_accessor key_name: ::String
|
272
278
|
attr_accessor no_expiry: bool
|
273
|
-
attr_accessor restrictions: Types::ApiKeyRestrictions
|
274
279
|
attr_accessor tags: ::Hash[::String, ::String]
|
275
280
|
SENSITIVE: []
|
276
281
|
end
|
277
282
|
|
278
283
|
class CreateKeyResponse
|
279
|
-
attr_accessor create_time: ::Time
|
280
284
|
attr_accessor key: ::String
|
281
285
|
attr_accessor key_arn: ::String
|
282
286
|
attr_accessor key_name: ::String
|
287
|
+
attr_accessor create_time: ::Time
|
283
288
|
SENSITIVE: [:key]
|
284
289
|
end
|
285
290
|
|
286
291
|
class CreateMapRequest
|
287
|
-
attr_accessor configuration: Types::MapConfiguration
|
288
|
-
attr_accessor description: ::String
|
289
292
|
attr_accessor map_name: ::String
|
293
|
+
attr_accessor configuration: Types::MapConfiguration
|
290
294
|
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
295
|
+
attr_accessor description: ::String
|
291
296
|
attr_accessor tags: ::Hash[::String, ::String]
|
292
297
|
SENSITIVE: []
|
293
298
|
end
|
294
299
|
|
295
300
|
class CreateMapResponse
|
296
|
-
attr_accessor create_time: ::Time
|
297
|
-
attr_accessor map_arn: ::String
|
298
301
|
attr_accessor map_name: ::String
|
302
|
+
attr_accessor map_arn: ::String
|
303
|
+
attr_accessor create_time: ::Time
|
299
304
|
SENSITIVE: []
|
300
305
|
end
|
301
306
|
|
302
307
|
class CreatePlaceIndexRequest
|
303
|
-
attr_accessor data_source: ::String
|
304
|
-
attr_accessor data_source_configuration: Types::DataSourceConfiguration
|
305
|
-
attr_accessor description: ::String
|
306
308
|
attr_accessor index_name: ::String
|
309
|
+
attr_accessor data_source: ::String
|
307
310
|
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
311
|
+
attr_accessor description: ::String
|
312
|
+
attr_accessor data_source_configuration: Types::DataSourceConfiguration
|
308
313
|
attr_accessor tags: ::Hash[::String, ::String]
|
309
314
|
SENSITIVE: []
|
310
315
|
end
|
311
316
|
|
312
317
|
class CreatePlaceIndexResponse
|
313
|
-
attr_accessor create_time: ::Time
|
314
|
-
attr_accessor index_arn: ::String
|
315
318
|
attr_accessor index_name: ::String
|
319
|
+
attr_accessor index_arn: ::String
|
320
|
+
attr_accessor create_time: ::Time
|
316
321
|
SENSITIVE: []
|
317
322
|
end
|
318
323
|
|
319
324
|
class CreateRouteCalculatorRequest
|
320
325
|
attr_accessor calculator_name: ::String
|
321
326
|
attr_accessor data_source: ::String
|
322
|
-
attr_accessor description: ::String
|
323
327
|
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
328
|
+
attr_accessor description: ::String
|
324
329
|
attr_accessor tags: ::Hash[::String, ::String]
|
325
330
|
SENSITIVE: []
|
326
331
|
end
|
327
332
|
|
328
333
|
class CreateRouteCalculatorResponse
|
329
|
-
attr_accessor calculator_arn: ::String
|
330
334
|
attr_accessor calculator_name: ::String
|
335
|
+
attr_accessor calculator_arn: ::String
|
331
336
|
attr_accessor create_time: ::Time
|
332
337
|
SENSITIVE: []
|
333
338
|
end
|
334
339
|
|
335
340
|
class CreateTrackerRequest
|
336
|
-
attr_accessor
|
337
|
-
attr_accessor event_bridge_enabled: bool
|
338
|
-
attr_accessor kms_key_enable_geospatial_queries: bool
|
339
|
-
attr_accessor kms_key_id: ::String
|
340
|
-
attr_accessor position_filtering: ("TimeBased" | "DistanceBased" | "AccuracyBased")
|
341
|
+
attr_accessor tracker_name: ::String
|
341
342
|
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
343
|
+
attr_accessor kms_key_id: ::String
|
342
344
|
attr_accessor pricing_plan_data_source: ::String
|
345
|
+
attr_accessor description: ::String
|
343
346
|
attr_accessor tags: ::Hash[::String, ::String]
|
344
|
-
attr_accessor
|
347
|
+
attr_accessor position_filtering: ("TimeBased" | "DistanceBased" | "AccuracyBased")
|
348
|
+
attr_accessor event_bridge_enabled: bool
|
349
|
+
attr_accessor kms_key_enable_geospatial_queries: bool
|
345
350
|
SENSITIVE: []
|
346
351
|
end
|
347
352
|
|
348
353
|
class CreateTrackerResponse
|
349
|
-
attr_accessor create_time: ::Time
|
350
|
-
attr_accessor tracker_arn: ::String
|
351
354
|
attr_accessor tracker_name: ::String
|
355
|
+
attr_accessor tracker_arn: ::String
|
356
|
+
attr_accessor create_time: ::Time
|
352
357
|
SENSITIVE: []
|
353
358
|
end
|
354
359
|
|
@@ -366,8 +371,8 @@ module Aws::LocationService
|
|
366
371
|
end
|
367
372
|
|
368
373
|
class DeleteKeyRequest
|
369
|
-
attr_accessor force_delete: bool
|
370
374
|
attr_accessor key_name: ::String
|
375
|
+
attr_accessor force_delete: bool
|
371
376
|
SENSITIVE: []
|
372
377
|
end
|
373
378
|
|
@@ -412,16 +417,16 @@ module Aws::LocationService
|
|
412
417
|
end
|
413
418
|
|
414
419
|
class DescribeGeofenceCollectionResponse
|
415
|
-
attr_accessor collection_arn: ::String
|
416
420
|
attr_accessor collection_name: ::String
|
417
|
-
attr_accessor
|
421
|
+
attr_accessor collection_arn: ::String
|
418
422
|
attr_accessor description: ::String
|
419
|
-
attr_accessor geofence_count: ::Integer
|
420
|
-
attr_accessor kms_key_id: ::String
|
421
423
|
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
422
424
|
attr_accessor pricing_plan_data_source: ::String
|
425
|
+
attr_accessor kms_key_id: ::String
|
423
426
|
attr_accessor tags: ::Hash[::String, ::String]
|
427
|
+
attr_accessor create_time: ::Time
|
424
428
|
attr_accessor update_time: ::Time
|
429
|
+
attr_accessor geofence_count: ::Integer
|
425
430
|
SENSITIVE: []
|
426
431
|
end
|
427
432
|
|
@@ -431,15 +436,15 @@ module Aws::LocationService
|
|
431
436
|
end
|
432
437
|
|
433
438
|
class DescribeKeyResponse
|
434
|
-
attr_accessor create_time: ::Time
|
435
|
-
attr_accessor description: ::String
|
436
|
-
attr_accessor expire_time: ::Time
|
437
439
|
attr_accessor key: ::String
|
438
440
|
attr_accessor key_arn: ::String
|
439
441
|
attr_accessor key_name: ::String
|
440
442
|
attr_accessor restrictions: Types::ApiKeyRestrictions
|
441
|
-
attr_accessor
|
443
|
+
attr_accessor create_time: ::Time
|
444
|
+
attr_accessor expire_time: ::Time
|
442
445
|
attr_accessor update_time: ::Time
|
446
|
+
attr_accessor description: ::String
|
447
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
443
448
|
SENSITIVE: [:key]
|
444
449
|
end
|
445
450
|
|
@@ -449,14 +454,14 @@ module Aws::LocationService
|
|
449
454
|
end
|
450
455
|
|
451
456
|
class DescribeMapResponse
|
452
|
-
attr_accessor configuration: Types::MapConfiguration
|
453
|
-
attr_accessor create_time: ::Time
|
454
|
-
attr_accessor data_source: ::String
|
455
|
-
attr_accessor description: ::String
|
456
|
-
attr_accessor map_arn: ::String
|
457
457
|
attr_accessor map_name: ::String
|
458
|
+
attr_accessor map_arn: ::String
|
458
459
|
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
460
|
+
attr_accessor data_source: ::String
|
461
|
+
attr_accessor configuration: Types::MapConfiguration
|
462
|
+
attr_accessor description: ::String
|
459
463
|
attr_accessor tags: ::Hash[::String, ::String]
|
464
|
+
attr_accessor create_time: ::Time
|
460
465
|
attr_accessor update_time: ::Time
|
461
466
|
SENSITIVE: []
|
462
467
|
end
|
@@ -467,15 +472,15 @@ module Aws::LocationService
|
|
467
472
|
end
|
468
473
|
|
469
474
|
class DescribePlaceIndexResponse
|
475
|
+
attr_accessor index_name: ::String
|
476
|
+
attr_accessor index_arn: ::String
|
477
|
+
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
478
|
+
attr_accessor description: ::String
|
470
479
|
attr_accessor create_time: ::Time
|
480
|
+
attr_accessor update_time: ::Time
|
471
481
|
attr_accessor data_source: ::String
|
472
482
|
attr_accessor data_source_configuration: Types::DataSourceConfiguration
|
473
|
-
attr_accessor description: ::String
|
474
|
-
attr_accessor index_arn: ::String
|
475
|
-
attr_accessor index_name: ::String
|
476
|
-
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
477
483
|
attr_accessor tags: ::Hash[::String, ::String]
|
478
|
-
attr_accessor update_time: ::Time
|
479
484
|
SENSITIVE: []
|
480
485
|
end
|
481
486
|
|
@@ -485,14 +490,14 @@ module Aws::LocationService
|
|
485
490
|
end
|
486
491
|
|
487
492
|
class DescribeRouteCalculatorResponse
|
488
|
-
attr_accessor calculator_arn: ::String
|
489
493
|
attr_accessor calculator_name: ::String
|
494
|
+
attr_accessor calculator_arn: ::String
|
495
|
+
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
496
|
+
attr_accessor description: ::String
|
490
497
|
attr_accessor create_time: ::Time
|
498
|
+
attr_accessor update_time: ::Time
|
491
499
|
attr_accessor data_source: ::String
|
492
|
-
attr_accessor description: ::String
|
493
|
-
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
494
500
|
attr_accessor tags: ::Hash[::String, ::String]
|
495
|
-
attr_accessor update_time: ::Time
|
496
501
|
SENSITIVE: []
|
497
502
|
end
|
498
503
|
|
@@ -502,62 +507,110 @@ module Aws::LocationService
|
|
502
507
|
end
|
503
508
|
|
504
509
|
class DescribeTrackerResponse
|
505
|
-
attr_accessor
|
510
|
+
attr_accessor tracker_name: ::String
|
511
|
+
attr_accessor tracker_arn: ::String
|
506
512
|
attr_accessor description: ::String
|
507
|
-
attr_accessor event_bridge_enabled: bool
|
508
|
-
attr_accessor kms_key_enable_geospatial_queries: bool
|
509
|
-
attr_accessor kms_key_id: ::String
|
510
|
-
attr_accessor position_filtering: ("TimeBased" | "DistanceBased" | "AccuracyBased")
|
511
513
|
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
512
514
|
attr_accessor pricing_plan_data_source: ::String
|
513
515
|
attr_accessor tags: ::Hash[::String, ::String]
|
514
|
-
attr_accessor
|
515
|
-
attr_accessor tracker_name: ::String
|
516
|
+
attr_accessor create_time: ::Time
|
516
517
|
attr_accessor update_time: ::Time
|
518
|
+
attr_accessor kms_key_id: ::String
|
519
|
+
attr_accessor position_filtering: ("TimeBased" | "DistanceBased" | "AccuracyBased")
|
520
|
+
attr_accessor event_bridge_enabled: bool
|
521
|
+
attr_accessor kms_key_enable_geospatial_queries: bool
|
517
522
|
SENSITIVE: []
|
518
523
|
end
|
519
524
|
|
520
525
|
class DevicePosition
|
521
|
-
attr_accessor accuracy: Types::PositionalAccuracy
|
522
526
|
attr_accessor device_id: ::String
|
527
|
+
attr_accessor sample_time: ::Time
|
528
|
+
attr_accessor received_time: ::Time
|
523
529
|
attr_accessor position: ::Array[::Float]
|
530
|
+
attr_accessor accuracy: Types::PositionalAccuracy
|
524
531
|
attr_accessor position_properties: ::Hash[::String, ::String]
|
525
|
-
attr_accessor received_time: ::Time
|
526
|
-
attr_accessor sample_time: ::Time
|
527
532
|
SENSITIVE: [:position, :position_properties]
|
528
533
|
end
|
529
534
|
|
530
535
|
class DevicePositionUpdate
|
531
|
-
attr_accessor accuracy: Types::PositionalAccuracy
|
532
536
|
attr_accessor device_id: ::String
|
537
|
+
attr_accessor sample_time: ::Time
|
533
538
|
attr_accessor position: ::Array[::Float]
|
539
|
+
attr_accessor accuracy: Types::PositionalAccuracy
|
534
540
|
attr_accessor position_properties: ::Hash[::String, ::String]
|
535
|
-
attr_accessor sample_time: ::Time
|
536
541
|
SENSITIVE: [:position, :position_properties]
|
537
542
|
end
|
538
543
|
|
544
|
+
class DeviceState
|
545
|
+
attr_accessor device_id: ::String
|
546
|
+
attr_accessor sample_time: ::Time
|
547
|
+
attr_accessor position: ::Array[::Float]
|
548
|
+
attr_accessor accuracy: Types::PositionalAccuracy
|
549
|
+
attr_accessor ipv_4_address: ::String
|
550
|
+
attr_accessor wi_fi_access_points: ::Array[Types::WiFiAccessPoint]
|
551
|
+
attr_accessor cell_signals: Types::CellSignals
|
552
|
+
SENSITIVE: [:position]
|
553
|
+
end
|
554
|
+
|
539
555
|
class DisassociateTrackerConsumerRequest
|
540
|
-
attr_accessor consumer_arn: ::String
|
541
556
|
attr_accessor tracker_name: ::String
|
557
|
+
attr_accessor consumer_arn: ::String
|
542
558
|
SENSITIVE: []
|
543
559
|
end
|
544
560
|
|
545
561
|
class DisassociateTrackerConsumerResponse < Aws::EmptyStructure
|
546
562
|
end
|
547
563
|
|
564
|
+
class ForecastGeofenceEventsDeviceState
|
565
|
+
attr_accessor position: ::Array[::Float]
|
566
|
+
attr_accessor speed: ::Float
|
567
|
+
SENSITIVE: [:position]
|
568
|
+
end
|
569
|
+
|
570
|
+
class ForecastGeofenceEventsRequest
|
571
|
+
attr_accessor collection_name: ::String
|
572
|
+
attr_accessor device_state: Types::ForecastGeofenceEventsDeviceState
|
573
|
+
attr_accessor time_horizon_minutes: ::Float
|
574
|
+
attr_accessor distance_unit: ("Kilometers" | "Miles")
|
575
|
+
attr_accessor speed_unit: ("KilometersPerHour" | "MilesPerHour")
|
576
|
+
attr_accessor next_token: ::String
|
577
|
+
attr_accessor max_results: ::Integer
|
578
|
+
SENSITIVE: []
|
579
|
+
end
|
580
|
+
|
581
|
+
class ForecastGeofenceEventsResponse
|
582
|
+
attr_accessor forecasted_events: ::Array[Types::ForecastedEvent]
|
583
|
+
attr_accessor next_token: ::String
|
584
|
+
attr_accessor distance_unit: ("Kilometers" | "Miles")
|
585
|
+
attr_accessor speed_unit: ("KilometersPerHour" | "MilesPerHour")
|
586
|
+
SENSITIVE: []
|
587
|
+
end
|
588
|
+
|
589
|
+
class ForecastedEvent
|
590
|
+
attr_accessor event_id: ::String
|
591
|
+
attr_accessor geofence_id: ::String
|
592
|
+
attr_accessor is_device_in_geofence: bool
|
593
|
+
attr_accessor nearest_distance: ::Float
|
594
|
+
attr_accessor event_type: ("ENTER" | "EXIT" | "IDLE")
|
595
|
+
attr_accessor forecasted_breach_time: ::Time
|
596
|
+
attr_accessor geofence_properties: ::Hash[::String, ::String]
|
597
|
+
SENSITIVE: [:geofence_properties]
|
598
|
+
end
|
599
|
+
|
548
600
|
class GeofenceGeometry
|
549
|
-
attr_accessor circle: Types::Circle
|
550
601
|
attr_accessor polygon: ::Array[::Array[::Array[::Float]]]
|
551
|
-
|
602
|
+
attr_accessor circle: Types::Circle
|
603
|
+
attr_accessor geobuf: ::String
|
604
|
+
SENSITIVE: [:circle, :geobuf]
|
552
605
|
end
|
553
606
|
|
554
607
|
class GetDevicePositionHistoryRequest
|
608
|
+
attr_accessor tracker_name: ::String
|
555
609
|
attr_accessor device_id: ::String
|
556
|
-
attr_accessor end_time_exclusive: ::Time
|
557
|
-
attr_accessor max_results: ::Integer
|
558
610
|
attr_accessor next_token: ::String
|
559
611
|
attr_accessor start_time_inclusive: ::Time
|
560
|
-
attr_accessor
|
612
|
+
attr_accessor end_time_exclusive: ::Time
|
613
|
+
attr_accessor max_results: ::Integer
|
561
614
|
SENSITIVE: []
|
562
615
|
end
|
563
616
|
|
@@ -568,18 +621,18 @@ module Aws::LocationService
|
|
568
621
|
end
|
569
622
|
|
570
623
|
class GetDevicePositionRequest
|
571
|
-
attr_accessor device_id: ::String
|
572
624
|
attr_accessor tracker_name: ::String
|
625
|
+
attr_accessor device_id: ::String
|
573
626
|
SENSITIVE: []
|
574
627
|
end
|
575
628
|
|
576
629
|
class GetDevicePositionResponse
|
577
|
-
attr_accessor accuracy: Types::PositionalAccuracy
|
578
630
|
attr_accessor device_id: ::String
|
631
|
+
attr_accessor sample_time: ::Time
|
632
|
+
attr_accessor received_time: ::Time
|
579
633
|
attr_accessor position: ::Array[::Float]
|
634
|
+
attr_accessor accuracy: Types::PositionalAccuracy
|
580
635
|
attr_accessor position_properties: ::Hash[::String, ::String]
|
581
|
-
attr_accessor received_time: ::Time
|
582
|
-
attr_accessor sample_time: ::Time
|
583
636
|
SENSITIVE: [:position, :position_properties]
|
584
637
|
end
|
585
638
|
|
@@ -590,78 +643,78 @@ module Aws::LocationService
|
|
590
643
|
end
|
591
644
|
|
592
645
|
class GetGeofenceResponse
|
593
|
-
attr_accessor create_time: ::Time
|
594
646
|
attr_accessor geofence_id: ::String
|
595
|
-
attr_accessor geofence_properties: ::Hash[::String, ::String]
|
596
647
|
attr_accessor geometry: Types::GeofenceGeometry
|
597
648
|
attr_accessor status: ::String
|
649
|
+
attr_accessor create_time: ::Time
|
598
650
|
attr_accessor update_time: ::Time
|
651
|
+
attr_accessor geofence_properties: ::Hash[::String, ::String]
|
599
652
|
SENSITIVE: [:geofence_properties]
|
600
653
|
end
|
601
654
|
|
602
655
|
class GetMapGlyphsRequest
|
656
|
+
attr_accessor map_name: ::String
|
603
657
|
attr_accessor font_stack: ::String
|
604
658
|
attr_accessor font_unicode_range: ::String
|
605
659
|
attr_accessor key: ::String
|
606
|
-
attr_accessor map_name: ::String
|
607
660
|
SENSITIVE: [:key]
|
608
661
|
end
|
609
662
|
|
610
663
|
class GetMapGlyphsResponse
|
611
664
|
attr_accessor blob: ::IO
|
612
|
-
attr_accessor cache_control: ::String
|
613
665
|
attr_accessor content_type: ::String
|
666
|
+
attr_accessor cache_control: ::String
|
614
667
|
SENSITIVE: []
|
615
668
|
end
|
616
669
|
|
617
670
|
class GetMapSpritesRequest
|
671
|
+
attr_accessor map_name: ::String
|
618
672
|
attr_accessor file_name: ::String
|
619
673
|
attr_accessor key: ::String
|
620
|
-
attr_accessor map_name: ::String
|
621
674
|
SENSITIVE: [:key]
|
622
675
|
end
|
623
676
|
|
624
677
|
class GetMapSpritesResponse
|
625
678
|
attr_accessor blob: ::IO
|
626
|
-
attr_accessor cache_control: ::String
|
627
679
|
attr_accessor content_type: ::String
|
680
|
+
attr_accessor cache_control: ::String
|
628
681
|
SENSITIVE: []
|
629
682
|
end
|
630
683
|
|
631
684
|
class GetMapStyleDescriptorRequest
|
632
|
-
attr_accessor key: ::String
|
633
685
|
attr_accessor map_name: ::String
|
686
|
+
attr_accessor key: ::String
|
634
687
|
SENSITIVE: [:key]
|
635
688
|
end
|
636
689
|
|
637
690
|
class GetMapStyleDescriptorResponse
|
638
691
|
attr_accessor blob: ::IO
|
639
|
-
attr_accessor cache_control: ::String
|
640
692
|
attr_accessor content_type: ::String
|
693
|
+
attr_accessor cache_control: ::String
|
641
694
|
SENSITIVE: []
|
642
695
|
end
|
643
696
|
|
644
697
|
class GetMapTileRequest
|
645
|
-
attr_accessor key: ::String
|
646
698
|
attr_accessor map_name: ::String
|
699
|
+
attr_accessor z: ::String
|
647
700
|
attr_accessor x: ::String
|
648
701
|
attr_accessor y: ::String
|
649
|
-
attr_accessor
|
702
|
+
attr_accessor key: ::String
|
650
703
|
SENSITIVE: [:key]
|
651
704
|
end
|
652
705
|
|
653
706
|
class GetMapTileResponse
|
654
707
|
attr_accessor blob: ::IO
|
655
|
-
attr_accessor cache_control: ::String
|
656
708
|
attr_accessor content_type: ::String
|
709
|
+
attr_accessor cache_control: ::String
|
657
710
|
SENSITIVE: []
|
658
711
|
end
|
659
712
|
|
660
713
|
class GetPlaceRequest
|
661
714
|
attr_accessor index_name: ::String
|
662
|
-
attr_accessor key: ::String
|
663
|
-
attr_accessor language: ::String
|
664
715
|
attr_accessor place_id: ::String
|
716
|
+
attr_accessor language: ::String
|
717
|
+
attr_accessor key: ::String
|
665
718
|
SENSITIVE: [:key]
|
666
719
|
end
|
667
720
|
|
@@ -670,19 +723,27 @@ module Aws::LocationService
|
|
670
723
|
SENSITIVE: []
|
671
724
|
end
|
672
725
|
|
726
|
+
class InferredState
|
727
|
+
attr_accessor position: ::Array[::Float]
|
728
|
+
attr_accessor accuracy: Types::PositionalAccuracy
|
729
|
+
attr_accessor deviation_distance: ::Float
|
730
|
+
attr_accessor proxy_detected: bool
|
731
|
+
SENSITIVE: [:position]
|
732
|
+
end
|
733
|
+
|
673
734
|
class InternalServerException
|
674
735
|
attr_accessor message: ::String
|
675
736
|
SENSITIVE: []
|
676
737
|
end
|
677
738
|
|
678
739
|
class Leg
|
740
|
+
attr_accessor start_position: ::Array[::Float]
|
741
|
+
attr_accessor end_position: ::Array[::Float]
|
679
742
|
attr_accessor distance: ::Float
|
680
743
|
attr_accessor duration_seconds: ::Float
|
681
|
-
attr_accessor end_position: ::Array[::Float]
|
682
744
|
attr_accessor geometry: Types::LegGeometry
|
683
|
-
attr_accessor start_position: ::Array[::Float]
|
684
745
|
attr_accessor steps: ::Array[Types::Step]
|
685
|
-
SENSITIVE: [:
|
746
|
+
SENSITIVE: [:start_position, :end_position]
|
686
747
|
end
|
687
748
|
|
688
749
|
class LegGeometry
|
@@ -691,10 +752,10 @@ module Aws::LocationService
|
|
691
752
|
end
|
692
753
|
|
693
754
|
class ListDevicePositionsRequest
|
694
|
-
attr_accessor
|
755
|
+
attr_accessor tracker_name: ::String
|
695
756
|
attr_accessor max_results: ::Integer
|
696
757
|
attr_accessor next_token: ::String
|
697
|
-
attr_accessor
|
758
|
+
attr_accessor filter_geometry: Types::TrackingFilterGeometry
|
698
759
|
SENSITIVE: []
|
699
760
|
end
|
700
761
|
|
@@ -705,11 +766,11 @@ module Aws::LocationService
|
|
705
766
|
end
|
706
767
|
|
707
768
|
class ListDevicePositionsResponseEntry
|
708
|
-
attr_accessor accuracy: Types::PositionalAccuracy
|
709
769
|
attr_accessor device_id: ::String
|
770
|
+
attr_accessor sample_time: ::Time
|
710
771
|
attr_accessor position: ::Array[::Float]
|
772
|
+
attr_accessor accuracy: Types::PositionalAccuracy
|
711
773
|
attr_accessor position_properties: ::Hash[::String, ::String]
|
712
|
-
attr_accessor sample_time: ::Time
|
713
774
|
SENSITIVE: [:position, :position_properties]
|
714
775
|
end
|
715
776
|
|
@@ -727,28 +788,28 @@ module Aws::LocationService
|
|
727
788
|
|
728
789
|
class ListGeofenceCollectionsResponseEntry
|
729
790
|
attr_accessor collection_name: ::String
|
730
|
-
attr_accessor create_time: ::Time
|
731
791
|
attr_accessor description: ::String
|
732
792
|
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
733
793
|
attr_accessor pricing_plan_data_source: ::String
|
794
|
+
attr_accessor create_time: ::Time
|
734
795
|
attr_accessor update_time: ::Time
|
735
796
|
SENSITIVE: []
|
736
797
|
end
|
737
798
|
|
738
799
|
class ListGeofenceResponseEntry
|
739
|
-
attr_accessor create_time: ::Time
|
740
800
|
attr_accessor geofence_id: ::String
|
741
|
-
attr_accessor geofence_properties: ::Hash[::String, ::String]
|
742
801
|
attr_accessor geometry: Types::GeofenceGeometry
|
743
802
|
attr_accessor status: ::String
|
803
|
+
attr_accessor create_time: ::Time
|
744
804
|
attr_accessor update_time: ::Time
|
805
|
+
attr_accessor geofence_properties: ::Hash[::String, ::String]
|
745
806
|
SENSITIVE: [:geofence_properties]
|
746
807
|
end
|
747
808
|
|
748
809
|
class ListGeofencesRequest
|
749
810
|
attr_accessor collection_name: ::String
|
750
|
-
attr_accessor max_results: ::Integer
|
751
811
|
attr_accessor next_token: ::String
|
812
|
+
attr_accessor max_results: ::Integer
|
752
813
|
SENSITIVE: []
|
753
814
|
end
|
754
815
|
|
@@ -759,9 +820,9 @@ module Aws::LocationService
|
|
759
820
|
end
|
760
821
|
|
761
822
|
class ListKeysRequest
|
762
|
-
attr_accessor filter: Types::ApiKeyFilter
|
763
823
|
attr_accessor max_results: ::Integer
|
764
824
|
attr_accessor next_token: ::String
|
825
|
+
attr_accessor filter: Types::ApiKeyFilter
|
765
826
|
SENSITIVE: []
|
766
827
|
end
|
767
828
|
|
@@ -772,11 +833,11 @@ module Aws::LocationService
|
|
772
833
|
end
|
773
834
|
|
774
835
|
class ListKeysResponseEntry
|
775
|
-
attr_accessor create_time: ::Time
|
776
|
-
attr_accessor description: ::String
|
777
|
-
attr_accessor expire_time: ::Time
|
778
836
|
attr_accessor key_name: ::String
|
837
|
+
attr_accessor expire_time: ::Time
|
838
|
+
attr_accessor description: ::String
|
779
839
|
attr_accessor restrictions: Types::ApiKeyRestrictions
|
840
|
+
attr_accessor create_time: ::Time
|
780
841
|
attr_accessor update_time: ::Time
|
781
842
|
SENSITIVE: []
|
782
843
|
end
|
@@ -794,11 +855,11 @@ module Aws::LocationService
|
|
794
855
|
end
|
795
856
|
|
796
857
|
class ListMapsResponseEntry
|
797
|
-
attr_accessor create_time: ::Time
|
798
|
-
attr_accessor data_source: ::String
|
799
|
-
attr_accessor description: ::String
|
800
858
|
attr_accessor map_name: ::String
|
859
|
+
attr_accessor description: ::String
|
860
|
+
attr_accessor data_source: ::String
|
801
861
|
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
862
|
+
attr_accessor create_time: ::Time
|
802
863
|
attr_accessor update_time: ::Time
|
803
864
|
SENSITIVE: []
|
804
865
|
end
|
@@ -816,11 +877,11 @@ module Aws::LocationService
|
|
816
877
|
end
|
817
878
|
|
818
879
|
class ListPlaceIndexesResponseEntry
|
819
|
-
attr_accessor create_time: ::Time
|
820
|
-
attr_accessor data_source: ::String
|
821
|
-
attr_accessor description: ::String
|
822
880
|
attr_accessor index_name: ::String
|
881
|
+
attr_accessor description: ::String
|
882
|
+
attr_accessor data_source: ::String
|
823
883
|
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
884
|
+
attr_accessor create_time: ::Time
|
824
885
|
attr_accessor update_time: ::Time
|
825
886
|
SENSITIVE: []
|
826
887
|
end
|
@@ -839,10 +900,10 @@ module Aws::LocationService
|
|
839
900
|
|
840
901
|
class ListRouteCalculatorsResponseEntry
|
841
902
|
attr_accessor calculator_name: ::String
|
842
|
-
attr_accessor create_time: ::Time
|
843
|
-
attr_accessor data_source: ::String
|
844
903
|
attr_accessor description: ::String
|
904
|
+
attr_accessor data_source: ::String
|
845
905
|
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
906
|
+
attr_accessor create_time: ::Time
|
846
907
|
attr_accessor update_time: ::Time
|
847
908
|
SENSITIVE: []
|
848
909
|
end
|
@@ -858,9 +919,9 @@ module Aws::LocationService
|
|
858
919
|
end
|
859
920
|
|
860
921
|
class ListTrackerConsumersRequest
|
922
|
+
attr_accessor tracker_name: ::String
|
861
923
|
attr_accessor max_results: ::Integer
|
862
924
|
attr_accessor next_token: ::String
|
863
|
-
attr_accessor tracker_name: ::String
|
864
925
|
SENSITIVE: []
|
865
926
|
end
|
866
927
|
|
@@ -883,46 +944,75 @@ module Aws::LocationService
|
|
883
944
|
end
|
884
945
|
|
885
946
|
class ListTrackersResponseEntry
|
886
|
-
attr_accessor
|
947
|
+
attr_accessor tracker_name: ::String
|
887
948
|
attr_accessor description: ::String
|
888
949
|
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
889
950
|
attr_accessor pricing_plan_data_source: ::String
|
890
|
-
attr_accessor
|
951
|
+
attr_accessor create_time: ::Time
|
891
952
|
attr_accessor update_time: ::Time
|
892
953
|
SENSITIVE: []
|
893
954
|
end
|
894
955
|
|
956
|
+
class LteCellDetails
|
957
|
+
attr_accessor cell_id: ::Integer
|
958
|
+
attr_accessor mcc: ::Integer
|
959
|
+
attr_accessor mnc: ::Integer
|
960
|
+
attr_accessor local_id: Types::LteLocalId
|
961
|
+
attr_accessor network_measurements: ::Array[Types::LteNetworkMeasurements]
|
962
|
+
attr_accessor timing_advance: ::Integer
|
963
|
+
attr_accessor nr_capable: bool
|
964
|
+
attr_accessor rsrp: ::Integer
|
965
|
+
attr_accessor rsrq: ::Float
|
966
|
+
attr_accessor tac: ::Integer
|
967
|
+
SENSITIVE: []
|
968
|
+
end
|
969
|
+
|
970
|
+
class LteLocalId
|
971
|
+
attr_accessor earfcn: ::Integer
|
972
|
+
attr_accessor pci: ::Integer
|
973
|
+
SENSITIVE: []
|
974
|
+
end
|
975
|
+
|
976
|
+
class LteNetworkMeasurements
|
977
|
+
attr_accessor earfcn: ::Integer
|
978
|
+
attr_accessor cell_id: ::Integer
|
979
|
+
attr_accessor pci: ::Integer
|
980
|
+
attr_accessor rsrp: ::Integer
|
981
|
+
attr_accessor rsrq: ::Float
|
982
|
+
SENSITIVE: []
|
983
|
+
end
|
984
|
+
|
895
985
|
class MapConfiguration
|
896
|
-
attr_accessor custom_layers: ::Array[::String]
|
897
|
-
attr_accessor political_view: ::String
|
898
986
|
attr_accessor style: ::String
|
987
|
+
attr_accessor political_view: ::String
|
988
|
+
attr_accessor custom_layers: ::Array[::String]
|
899
989
|
SENSITIVE: []
|
900
990
|
end
|
901
991
|
|
902
992
|
class MapConfigurationUpdate
|
903
|
-
attr_accessor custom_layers: ::Array[::String]
|
904
993
|
attr_accessor political_view: ::String
|
994
|
+
attr_accessor custom_layers: ::Array[::String]
|
905
995
|
SENSITIVE: []
|
906
996
|
end
|
907
997
|
|
908
998
|
class Place
|
909
|
-
attr_accessor address_number: ::String
|
910
|
-
attr_accessor categories: ::Array[::String]
|
911
|
-
attr_accessor country: ::String
|
912
|
-
attr_accessor geometry: Types::PlaceGeometry
|
913
|
-
attr_accessor interpolated: bool
|
914
999
|
attr_accessor label: ::String
|
915
|
-
attr_accessor
|
916
|
-
attr_accessor
|
917
|
-
attr_accessor postal_code: ::String
|
918
|
-
attr_accessor region: ::String
|
1000
|
+
attr_accessor geometry: Types::PlaceGeometry
|
1001
|
+
attr_accessor address_number: ::String
|
919
1002
|
attr_accessor street: ::String
|
920
|
-
attr_accessor
|
1003
|
+
attr_accessor neighborhood: ::String
|
1004
|
+
attr_accessor municipality: ::String
|
921
1005
|
attr_accessor sub_region: ::String
|
922
|
-
attr_accessor
|
1006
|
+
attr_accessor region: ::String
|
1007
|
+
attr_accessor country: ::String
|
1008
|
+
attr_accessor postal_code: ::String
|
1009
|
+
attr_accessor interpolated: bool
|
923
1010
|
attr_accessor time_zone: Types::TimeZone
|
924
|
-
attr_accessor unit_number: ::String
|
925
1011
|
attr_accessor unit_type: ::String
|
1012
|
+
attr_accessor unit_number: ::String
|
1013
|
+
attr_accessor categories: ::Array[::String]
|
1014
|
+
attr_accessor supplemental_categories: ::Array[::String]
|
1015
|
+
attr_accessor sub_municipality: ::String
|
926
1016
|
SENSITIVE: []
|
927
1017
|
end
|
928
1018
|
|
@@ -939,14 +1029,14 @@ module Aws::LocationService
|
|
939
1029
|
class PutGeofenceRequest
|
940
1030
|
attr_accessor collection_name: ::String
|
941
1031
|
attr_accessor geofence_id: ::String
|
942
|
-
attr_accessor geofence_properties: ::Hash[::String, ::String]
|
943
1032
|
attr_accessor geometry: Types::GeofenceGeometry
|
1033
|
+
attr_accessor geofence_properties: ::Hash[::String, ::String]
|
944
1034
|
SENSITIVE: [:geofence_properties]
|
945
1035
|
end
|
946
1036
|
|
947
1037
|
class PutGeofenceResponse
|
948
|
-
attr_accessor create_time: ::Time
|
949
1038
|
attr_accessor geofence_id: ::String
|
1039
|
+
attr_accessor create_time: ::Time
|
950
1040
|
attr_accessor update_time: ::Time
|
951
1041
|
SENSITIVE: []
|
952
1042
|
end
|
@@ -970,112 +1060,112 @@ module Aws::LocationService
|
|
970
1060
|
end
|
971
1061
|
|
972
1062
|
class SearchForPositionResult
|
973
|
-
attr_accessor distance: ::Float
|
974
1063
|
attr_accessor place: Types::Place
|
1064
|
+
attr_accessor distance: ::Float
|
975
1065
|
attr_accessor place_id: ::String
|
976
1066
|
SENSITIVE: []
|
977
1067
|
end
|
978
1068
|
|
979
1069
|
class SearchForSuggestionsResult
|
980
|
-
attr_accessor
|
1070
|
+
attr_accessor text: ::String
|
981
1071
|
attr_accessor place_id: ::String
|
1072
|
+
attr_accessor categories: ::Array[::String]
|
982
1073
|
attr_accessor supplemental_categories: ::Array[::String]
|
983
|
-
attr_accessor text: ::String
|
984
1074
|
SENSITIVE: []
|
985
1075
|
end
|
986
1076
|
|
987
1077
|
class SearchForTextResult
|
988
|
-
attr_accessor distance: ::Float
|
989
1078
|
attr_accessor place: Types::Place
|
990
|
-
attr_accessor
|
1079
|
+
attr_accessor distance: ::Float
|
991
1080
|
attr_accessor relevance: ::Float
|
1081
|
+
attr_accessor place_id: ::String
|
992
1082
|
SENSITIVE: []
|
993
1083
|
end
|
994
1084
|
|
995
1085
|
class SearchPlaceIndexForPositionRequest
|
996
1086
|
attr_accessor index_name: ::String
|
997
|
-
attr_accessor key: ::String
|
998
|
-
attr_accessor language: ::String
|
999
|
-
attr_accessor max_results: ::Integer
|
1000
1087
|
attr_accessor position: ::Array[::Float]
|
1001
|
-
|
1088
|
+
attr_accessor max_results: ::Integer
|
1089
|
+
attr_accessor language: ::String
|
1090
|
+
attr_accessor key: ::String
|
1091
|
+
SENSITIVE: [:position, :key]
|
1002
1092
|
end
|
1003
1093
|
|
1004
1094
|
class SearchPlaceIndexForPositionResponse
|
1005
|
-
attr_accessor results: ::Array[Types::SearchForPositionResult]
|
1006
1095
|
attr_accessor summary: Types::SearchPlaceIndexForPositionSummary
|
1096
|
+
attr_accessor results: ::Array[Types::SearchForPositionResult]
|
1007
1097
|
SENSITIVE: []
|
1008
1098
|
end
|
1009
1099
|
|
1010
1100
|
class SearchPlaceIndexForPositionSummary
|
1101
|
+
attr_accessor position: ::Array[::Float]
|
1102
|
+
attr_accessor max_results: ::Integer
|
1011
1103
|
attr_accessor data_source: ::String
|
1012
1104
|
attr_accessor language: ::String
|
1013
|
-
attr_accessor max_results: ::Integer
|
1014
|
-
attr_accessor position: ::Array[::Float]
|
1015
1105
|
SENSITIVE: [:position]
|
1016
1106
|
end
|
1017
1107
|
|
1018
1108
|
class SearchPlaceIndexForSuggestionsRequest
|
1109
|
+
attr_accessor index_name: ::String
|
1110
|
+
attr_accessor text: ::String
|
1019
1111
|
attr_accessor bias_position: ::Array[::Float]
|
1020
1112
|
attr_accessor filter_b_box: ::Array[::Float]
|
1021
|
-
attr_accessor filter_categories: ::Array[::String]
|
1022
1113
|
attr_accessor filter_countries: ::Array[::String]
|
1023
|
-
attr_accessor index_name: ::String
|
1024
|
-
attr_accessor key: ::String
|
1025
|
-
attr_accessor language: ::String
|
1026
1114
|
attr_accessor max_results: ::Integer
|
1027
|
-
attr_accessor
|
1028
|
-
|
1115
|
+
attr_accessor language: ::String
|
1116
|
+
attr_accessor filter_categories: ::Array[::String]
|
1117
|
+
attr_accessor key: ::String
|
1118
|
+
SENSITIVE: [:text, :bias_position, :filter_b_box, :key]
|
1029
1119
|
end
|
1030
1120
|
|
1031
1121
|
class SearchPlaceIndexForSuggestionsResponse
|
1032
|
-
attr_accessor results: ::Array[Types::SearchForSuggestionsResult]
|
1033
1122
|
attr_accessor summary: Types::SearchPlaceIndexForSuggestionsSummary
|
1123
|
+
attr_accessor results: ::Array[Types::SearchForSuggestionsResult]
|
1034
1124
|
SENSITIVE: []
|
1035
1125
|
end
|
1036
1126
|
|
1037
1127
|
class SearchPlaceIndexForSuggestionsSummary
|
1128
|
+
attr_accessor text: ::String
|
1038
1129
|
attr_accessor bias_position: ::Array[::Float]
|
1039
|
-
attr_accessor data_source: ::String
|
1040
1130
|
attr_accessor filter_b_box: ::Array[::Float]
|
1041
|
-
attr_accessor filter_categories: ::Array[::String]
|
1042
1131
|
attr_accessor filter_countries: ::Array[::String]
|
1043
|
-
attr_accessor language: ::String
|
1044
1132
|
attr_accessor max_results: ::Integer
|
1045
|
-
attr_accessor
|
1046
|
-
|
1133
|
+
attr_accessor data_source: ::String
|
1134
|
+
attr_accessor language: ::String
|
1135
|
+
attr_accessor filter_categories: ::Array[::String]
|
1136
|
+
SENSITIVE: [:text, :bias_position, :filter_b_box]
|
1047
1137
|
end
|
1048
1138
|
|
1049
1139
|
class SearchPlaceIndexForTextRequest
|
1140
|
+
attr_accessor index_name: ::String
|
1141
|
+
attr_accessor text: ::String
|
1050
1142
|
attr_accessor bias_position: ::Array[::Float]
|
1051
1143
|
attr_accessor filter_b_box: ::Array[::Float]
|
1052
|
-
attr_accessor filter_categories: ::Array[::String]
|
1053
1144
|
attr_accessor filter_countries: ::Array[::String]
|
1054
|
-
attr_accessor index_name: ::String
|
1055
|
-
attr_accessor key: ::String
|
1056
|
-
attr_accessor language: ::String
|
1057
1145
|
attr_accessor max_results: ::Integer
|
1058
|
-
attr_accessor
|
1059
|
-
|
1146
|
+
attr_accessor language: ::String
|
1147
|
+
attr_accessor filter_categories: ::Array[::String]
|
1148
|
+
attr_accessor key: ::String
|
1149
|
+
SENSITIVE: [:text, :bias_position, :filter_b_box, :key]
|
1060
1150
|
end
|
1061
1151
|
|
1062
1152
|
class SearchPlaceIndexForTextResponse
|
1063
|
-
attr_accessor results: ::Array[Types::SearchForTextResult]
|
1064
1153
|
attr_accessor summary: Types::SearchPlaceIndexForTextSummary
|
1154
|
+
attr_accessor results: ::Array[Types::SearchForTextResult]
|
1065
1155
|
SENSITIVE: []
|
1066
1156
|
end
|
1067
1157
|
|
1068
1158
|
class SearchPlaceIndexForTextSummary
|
1159
|
+
attr_accessor text: ::String
|
1069
1160
|
attr_accessor bias_position: ::Array[::Float]
|
1070
|
-
attr_accessor data_source: ::String
|
1071
1161
|
attr_accessor filter_b_box: ::Array[::Float]
|
1072
|
-
attr_accessor filter_categories: ::Array[::String]
|
1073
1162
|
attr_accessor filter_countries: ::Array[::String]
|
1074
|
-
attr_accessor language: ::String
|
1075
1163
|
attr_accessor max_results: ::Integer
|
1076
1164
|
attr_accessor result_b_box: ::Array[::Float]
|
1077
|
-
attr_accessor
|
1078
|
-
|
1165
|
+
attr_accessor data_source: ::String
|
1166
|
+
attr_accessor language: ::String
|
1167
|
+
attr_accessor filter_categories: ::Array[::String]
|
1168
|
+
SENSITIVE: [:text, :bias_position, :filter_b_box, :result_b_box]
|
1079
1169
|
end
|
1080
1170
|
|
1081
1171
|
class ServiceQuotaExceededException
|
@@ -1084,12 +1174,12 @@ module Aws::LocationService
|
|
1084
1174
|
end
|
1085
1175
|
|
1086
1176
|
class Step
|
1177
|
+
attr_accessor start_position: ::Array[::Float]
|
1178
|
+
attr_accessor end_position: ::Array[::Float]
|
1087
1179
|
attr_accessor distance: ::Float
|
1088
1180
|
attr_accessor duration_seconds: ::Float
|
1089
|
-
attr_accessor end_position: ::Array[::Float]
|
1090
1181
|
attr_accessor geometry_offset: ::Integer
|
1091
|
-
|
1092
|
-
SENSITIVE: [:end_position, :start_position]
|
1182
|
+
SENSITIVE: [:start_position, :end_position]
|
1093
1183
|
end
|
1094
1184
|
|
1095
1185
|
class TagResourceRequest
|
@@ -1118,10 +1208,10 @@ module Aws::LocationService
|
|
1118
1208
|
end
|
1119
1209
|
|
1120
1210
|
class TruckDimensions
|
1121
|
-
attr_accessor height: ::Float
|
1122
1211
|
attr_accessor length: ::Float
|
1123
|
-
attr_accessor
|
1212
|
+
attr_accessor height: ::Float
|
1124
1213
|
attr_accessor width: ::Float
|
1214
|
+
attr_accessor unit: ("Meters" | "Feet")
|
1125
1215
|
SENSITIVE: []
|
1126
1216
|
end
|
1127
1217
|
|
@@ -1142,25 +1232,25 @@ module Aws::LocationService
|
|
1142
1232
|
|
1143
1233
|
class UpdateGeofenceCollectionRequest
|
1144
1234
|
attr_accessor collection_name: ::String
|
1145
|
-
attr_accessor description: ::String
|
1146
1235
|
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
1147
1236
|
attr_accessor pricing_plan_data_source: ::String
|
1237
|
+
attr_accessor description: ::String
|
1148
1238
|
SENSITIVE: []
|
1149
1239
|
end
|
1150
1240
|
|
1151
1241
|
class UpdateGeofenceCollectionResponse
|
1152
|
-
attr_accessor collection_arn: ::String
|
1153
1242
|
attr_accessor collection_name: ::String
|
1243
|
+
attr_accessor collection_arn: ::String
|
1154
1244
|
attr_accessor update_time: ::Time
|
1155
1245
|
SENSITIVE: []
|
1156
1246
|
end
|
1157
1247
|
|
1158
1248
|
class UpdateKeyRequest
|
1249
|
+
attr_accessor key_name: ::String
|
1159
1250
|
attr_accessor description: ::String
|
1160
1251
|
attr_accessor expire_time: ::Time
|
1161
|
-
attr_accessor force_update: bool
|
1162
|
-
attr_accessor key_name: ::String
|
1163
1252
|
attr_accessor no_expiry: bool
|
1253
|
+
attr_accessor force_update: bool
|
1164
1254
|
attr_accessor restrictions: Types::ApiKeyRestrictions
|
1165
1255
|
SENSITIVE: []
|
1166
1256
|
end
|
@@ -1173,77 +1263,99 @@ module Aws::LocationService
|
|
1173
1263
|
end
|
1174
1264
|
|
1175
1265
|
class UpdateMapRequest
|
1176
|
-
attr_accessor configuration_update: Types::MapConfigurationUpdate
|
1177
|
-
attr_accessor description: ::String
|
1178
1266
|
attr_accessor map_name: ::String
|
1179
1267
|
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
1268
|
+
attr_accessor description: ::String
|
1269
|
+
attr_accessor configuration_update: Types::MapConfigurationUpdate
|
1180
1270
|
SENSITIVE: []
|
1181
1271
|
end
|
1182
1272
|
|
1183
1273
|
class UpdateMapResponse
|
1184
|
-
attr_accessor map_arn: ::String
|
1185
1274
|
attr_accessor map_name: ::String
|
1275
|
+
attr_accessor map_arn: ::String
|
1186
1276
|
attr_accessor update_time: ::Time
|
1187
1277
|
SENSITIVE: []
|
1188
1278
|
end
|
1189
1279
|
|
1190
1280
|
class UpdatePlaceIndexRequest
|
1191
|
-
attr_accessor data_source_configuration: Types::DataSourceConfiguration
|
1192
|
-
attr_accessor description: ::String
|
1193
1281
|
attr_accessor index_name: ::String
|
1194
1282
|
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
1283
|
+
attr_accessor description: ::String
|
1284
|
+
attr_accessor data_source_configuration: Types::DataSourceConfiguration
|
1195
1285
|
SENSITIVE: []
|
1196
1286
|
end
|
1197
1287
|
|
1198
1288
|
class UpdatePlaceIndexResponse
|
1199
|
-
attr_accessor index_arn: ::String
|
1200
1289
|
attr_accessor index_name: ::String
|
1290
|
+
attr_accessor index_arn: ::String
|
1201
1291
|
attr_accessor update_time: ::Time
|
1202
1292
|
SENSITIVE: []
|
1203
1293
|
end
|
1204
1294
|
|
1205
1295
|
class UpdateRouteCalculatorRequest
|
1206
1296
|
attr_accessor calculator_name: ::String
|
1207
|
-
attr_accessor description: ::String
|
1208
1297
|
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
1298
|
+
attr_accessor description: ::String
|
1209
1299
|
SENSITIVE: []
|
1210
1300
|
end
|
1211
1301
|
|
1212
1302
|
class UpdateRouteCalculatorResponse
|
1213
|
-
attr_accessor calculator_arn: ::String
|
1214
1303
|
attr_accessor calculator_name: ::String
|
1304
|
+
attr_accessor calculator_arn: ::String
|
1215
1305
|
attr_accessor update_time: ::Time
|
1216
1306
|
SENSITIVE: []
|
1217
1307
|
end
|
1218
1308
|
|
1219
1309
|
class UpdateTrackerRequest
|
1310
|
+
attr_accessor tracker_name: ::String
|
1311
|
+
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
1312
|
+
attr_accessor pricing_plan_data_source: ::String
|
1220
1313
|
attr_accessor description: ::String
|
1314
|
+
attr_accessor position_filtering: ("TimeBased" | "DistanceBased" | "AccuracyBased")
|
1221
1315
|
attr_accessor event_bridge_enabled: bool
|
1222
1316
|
attr_accessor kms_key_enable_geospatial_queries: bool
|
1223
|
-
attr_accessor position_filtering: ("TimeBased" | "DistanceBased" | "AccuracyBased")
|
1224
|
-
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
1225
|
-
attr_accessor pricing_plan_data_source: ::String
|
1226
|
-
attr_accessor tracker_name: ::String
|
1227
1317
|
SENSITIVE: []
|
1228
1318
|
end
|
1229
1319
|
|
1230
1320
|
class UpdateTrackerResponse
|
1231
|
-
attr_accessor tracker_arn: ::String
|
1232
1321
|
attr_accessor tracker_name: ::String
|
1322
|
+
attr_accessor tracker_arn: ::String
|
1233
1323
|
attr_accessor update_time: ::Time
|
1234
1324
|
SENSITIVE: []
|
1235
1325
|
end
|
1236
1326
|
|
1237
1327
|
class ValidationException
|
1238
|
-
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
1239
1328
|
attr_accessor message: ::String
|
1240
1329
|
attr_accessor reason: ("UnknownOperation" | "Missing" | "CannotParse" | "FieldValidationFailed" | "Other")
|
1330
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
1241
1331
|
SENSITIVE: []
|
1242
1332
|
end
|
1243
1333
|
|
1244
1334
|
class ValidationExceptionField
|
1245
|
-
attr_accessor message: ::String
|
1246
1335
|
attr_accessor name: ::String
|
1336
|
+
attr_accessor message: ::String
|
1337
|
+
SENSITIVE: []
|
1338
|
+
end
|
1339
|
+
|
1340
|
+
class VerifyDevicePositionRequest
|
1341
|
+
attr_accessor tracker_name: ::String
|
1342
|
+
attr_accessor device_state: Types::DeviceState
|
1343
|
+
attr_accessor distance_unit: ("Kilometers" | "Miles")
|
1344
|
+
SENSITIVE: []
|
1345
|
+
end
|
1346
|
+
|
1347
|
+
class VerifyDevicePositionResponse
|
1348
|
+
attr_accessor inferred_state: Types::InferredState
|
1349
|
+
attr_accessor device_id: ::String
|
1350
|
+
attr_accessor sample_time: ::Time
|
1351
|
+
attr_accessor received_time: ::Time
|
1352
|
+
attr_accessor distance_unit: ("Kilometers" | "Miles")
|
1353
|
+
SENSITIVE: []
|
1354
|
+
end
|
1355
|
+
|
1356
|
+
class WiFiAccessPoint
|
1357
|
+
attr_accessor mac_address: ::String
|
1358
|
+
attr_accessor rss: ::Integer
|
1247
1359
|
SENSITIVE: []
|
1248
1360
|
end
|
1249
1361
|
end
|