aws-sdk-locationservice 1.46.0 → 1.48.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-locationservice/client.rb +70 -46
- data/lib/aws-sdk-locationservice/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-locationservice.rb +1 -1
- data/sig/client.rbs +1016 -0
- data/sig/errors.rbs +39 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1250 -0
- data/sig/waiters.rbs +13 -0
- metadata +9 -4
data/sig/types.rbs
ADDED
@@ -0,0 +1,1250 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::LocationService
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class ApiKeyFilter
|
17
|
+
attr_accessor key_status: ("Active" | "Expired")
|
18
|
+
SENSITIVE: []
|
19
|
+
end
|
20
|
+
|
21
|
+
class ApiKeyRestrictions
|
22
|
+
attr_accessor allow_actions: ::Array[::String]
|
23
|
+
attr_accessor allow_referers: ::Array[::String]
|
24
|
+
attr_accessor allow_resources: ::Array[::String]
|
25
|
+
SENSITIVE: []
|
26
|
+
end
|
27
|
+
|
28
|
+
class AssociateTrackerConsumerRequest
|
29
|
+
attr_accessor consumer_arn: ::String
|
30
|
+
attr_accessor tracker_name: ::String
|
31
|
+
SENSITIVE: []
|
32
|
+
end
|
33
|
+
|
34
|
+
class AssociateTrackerConsumerResponse < Aws::EmptyStructure
|
35
|
+
end
|
36
|
+
|
37
|
+
class BatchDeleteDevicePositionHistoryError
|
38
|
+
attr_accessor device_id: ::String
|
39
|
+
attr_accessor error: Types::BatchItemError
|
40
|
+
SENSITIVE: []
|
41
|
+
end
|
42
|
+
|
43
|
+
class BatchDeleteDevicePositionHistoryRequest
|
44
|
+
attr_accessor device_ids: ::Array[::String]
|
45
|
+
attr_accessor tracker_name: ::String
|
46
|
+
SENSITIVE: []
|
47
|
+
end
|
48
|
+
|
49
|
+
class BatchDeleteDevicePositionHistoryResponse
|
50
|
+
attr_accessor errors: ::Array[Types::BatchDeleteDevicePositionHistoryError]
|
51
|
+
SENSITIVE: []
|
52
|
+
end
|
53
|
+
|
54
|
+
class BatchDeleteGeofenceError
|
55
|
+
attr_accessor error: Types::BatchItemError
|
56
|
+
attr_accessor geofence_id: ::String
|
57
|
+
SENSITIVE: []
|
58
|
+
end
|
59
|
+
|
60
|
+
class BatchDeleteGeofenceRequest
|
61
|
+
attr_accessor collection_name: ::String
|
62
|
+
attr_accessor geofence_ids: ::Array[::String]
|
63
|
+
SENSITIVE: []
|
64
|
+
end
|
65
|
+
|
66
|
+
class BatchDeleteGeofenceResponse
|
67
|
+
attr_accessor errors: ::Array[Types::BatchDeleteGeofenceError]
|
68
|
+
SENSITIVE: []
|
69
|
+
end
|
70
|
+
|
71
|
+
class BatchEvaluateGeofencesError
|
72
|
+
attr_accessor device_id: ::String
|
73
|
+
attr_accessor error: Types::BatchItemError
|
74
|
+
attr_accessor sample_time: ::Time
|
75
|
+
SENSITIVE: []
|
76
|
+
end
|
77
|
+
|
78
|
+
class BatchEvaluateGeofencesRequest
|
79
|
+
attr_accessor collection_name: ::String
|
80
|
+
attr_accessor device_position_updates: ::Array[Types::DevicePositionUpdate]
|
81
|
+
SENSITIVE: []
|
82
|
+
end
|
83
|
+
|
84
|
+
class BatchEvaluateGeofencesResponse
|
85
|
+
attr_accessor errors: ::Array[Types::BatchEvaluateGeofencesError]
|
86
|
+
SENSITIVE: []
|
87
|
+
end
|
88
|
+
|
89
|
+
class BatchGetDevicePositionError
|
90
|
+
attr_accessor device_id: ::String
|
91
|
+
attr_accessor error: Types::BatchItemError
|
92
|
+
SENSITIVE: []
|
93
|
+
end
|
94
|
+
|
95
|
+
class BatchGetDevicePositionRequest
|
96
|
+
attr_accessor device_ids: ::Array[::String]
|
97
|
+
attr_accessor tracker_name: ::String
|
98
|
+
SENSITIVE: []
|
99
|
+
end
|
100
|
+
|
101
|
+
class BatchGetDevicePositionResponse
|
102
|
+
attr_accessor device_positions: ::Array[Types::DevicePosition]
|
103
|
+
attr_accessor errors: ::Array[Types::BatchGetDevicePositionError]
|
104
|
+
SENSITIVE: []
|
105
|
+
end
|
106
|
+
|
107
|
+
class BatchItemError
|
108
|
+
attr_accessor code: ("AccessDeniedError" | "ConflictError" | "InternalServerError" | "ResourceNotFoundError" | "ThrottlingError" | "ValidationError")
|
109
|
+
attr_accessor message: ::String
|
110
|
+
SENSITIVE: []
|
111
|
+
end
|
112
|
+
|
113
|
+
class BatchPutGeofenceError
|
114
|
+
attr_accessor error: Types::BatchItemError
|
115
|
+
attr_accessor geofence_id: ::String
|
116
|
+
SENSITIVE: []
|
117
|
+
end
|
118
|
+
|
119
|
+
class BatchPutGeofenceRequest
|
120
|
+
attr_accessor collection_name: ::String
|
121
|
+
attr_accessor entries: ::Array[Types::BatchPutGeofenceRequestEntry]
|
122
|
+
SENSITIVE: []
|
123
|
+
end
|
124
|
+
|
125
|
+
class BatchPutGeofenceRequestEntry
|
126
|
+
attr_accessor geofence_id: ::String
|
127
|
+
attr_accessor geofence_properties: ::Hash[::String, ::String]
|
128
|
+
attr_accessor geometry: Types::GeofenceGeometry
|
129
|
+
SENSITIVE: [:geofence_properties]
|
130
|
+
end
|
131
|
+
|
132
|
+
class BatchPutGeofenceResponse
|
133
|
+
attr_accessor errors: ::Array[Types::BatchPutGeofenceError]
|
134
|
+
attr_accessor successes: ::Array[Types::BatchPutGeofenceSuccess]
|
135
|
+
SENSITIVE: []
|
136
|
+
end
|
137
|
+
|
138
|
+
class BatchPutGeofenceSuccess
|
139
|
+
attr_accessor create_time: ::Time
|
140
|
+
attr_accessor geofence_id: ::String
|
141
|
+
attr_accessor update_time: ::Time
|
142
|
+
SENSITIVE: []
|
143
|
+
end
|
144
|
+
|
145
|
+
class BatchUpdateDevicePositionError
|
146
|
+
attr_accessor device_id: ::String
|
147
|
+
attr_accessor error: Types::BatchItemError
|
148
|
+
attr_accessor sample_time: ::Time
|
149
|
+
SENSITIVE: []
|
150
|
+
end
|
151
|
+
|
152
|
+
class BatchUpdateDevicePositionRequest
|
153
|
+
attr_accessor tracker_name: ::String
|
154
|
+
attr_accessor updates: ::Array[Types::DevicePositionUpdate]
|
155
|
+
SENSITIVE: []
|
156
|
+
end
|
157
|
+
|
158
|
+
class BatchUpdateDevicePositionResponse
|
159
|
+
attr_accessor errors: ::Array[Types::BatchUpdateDevicePositionError]
|
160
|
+
SENSITIVE: []
|
161
|
+
end
|
162
|
+
|
163
|
+
class CalculateRouteCarModeOptions
|
164
|
+
attr_accessor avoid_ferries: bool
|
165
|
+
attr_accessor avoid_tolls: bool
|
166
|
+
SENSITIVE: []
|
167
|
+
end
|
168
|
+
|
169
|
+
class CalculateRouteMatrixRequest
|
170
|
+
attr_accessor calculator_name: ::String
|
171
|
+
attr_accessor car_mode_options: Types::CalculateRouteCarModeOptions
|
172
|
+
attr_accessor depart_now: bool
|
173
|
+
attr_accessor departure_positions: ::Array[::Array[::Float]]
|
174
|
+
attr_accessor departure_time: ::Time
|
175
|
+
attr_accessor destination_positions: ::Array[::Array[::Float]]
|
176
|
+
attr_accessor distance_unit: ("Kilometers" | "Miles")
|
177
|
+
attr_accessor key: ::String
|
178
|
+
attr_accessor travel_mode: ("Car" | "Truck" | "Walking" | "Bicycle" | "Motorcycle")
|
179
|
+
attr_accessor truck_mode_options: Types::CalculateRouteTruckModeOptions
|
180
|
+
SENSITIVE: [:key]
|
181
|
+
end
|
182
|
+
|
183
|
+
class CalculateRouteMatrixResponse
|
184
|
+
attr_accessor route_matrix: ::Array[::Array[Types::RouteMatrixEntry]]
|
185
|
+
attr_accessor snapped_departure_positions: ::Array[::Array[::Float]]
|
186
|
+
attr_accessor snapped_destination_positions: ::Array[::Array[::Float]]
|
187
|
+
attr_accessor summary: Types::CalculateRouteMatrixSummary
|
188
|
+
SENSITIVE: []
|
189
|
+
end
|
190
|
+
|
191
|
+
class CalculateRouteMatrixSummary
|
192
|
+
attr_accessor data_source: ::String
|
193
|
+
attr_accessor distance_unit: ("Kilometers" | "Miles")
|
194
|
+
attr_accessor error_count: ::Integer
|
195
|
+
attr_accessor route_count: ::Integer
|
196
|
+
SENSITIVE: []
|
197
|
+
end
|
198
|
+
|
199
|
+
class CalculateRouteRequest
|
200
|
+
attr_accessor arrival_time: ::Time
|
201
|
+
attr_accessor calculator_name: ::String
|
202
|
+
attr_accessor car_mode_options: Types::CalculateRouteCarModeOptions
|
203
|
+
attr_accessor depart_now: bool
|
204
|
+
attr_accessor departure_position: ::Array[::Float]
|
205
|
+
attr_accessor departure_time: ::Time
|
206
|
+
attr_accessor destination_position: ::Array[::Float]
|
207
|
+
attr_accessor distance_unit: ("Kilometers" | "Miles")
|
208
|
+
attr_accessor include_leg_geometry: bool
|
209
|
+
attr_accessor key: ::String
|
210
|
+
attr_accessor optimize_for: ("FastestRoute" | "ShortestRoute")
|
211
|
+
attr_accessor travel_mode: ("Car" | "Truck" | "Walking" | "Bicycle" | "Motorcycle")
|
212
|
+
attr_accessor truck_mode_options: Types::CalculateRouteTruckModeOptions
|
213
|
+
attr_accessor waypoint_positions: ::Array[::Array[::Float]]
|
214
|
+
SENSITIVE: [:departure_position, :destination_position, :key]
|
215
|
+
end
|
216
|
+
|
217
|
+
class CalculateRouteResponse
|
218
|
+
attr_accessor legs: ::Array[Types::Leg]
|
219
|
+
attr_accessor summary: Types::CalculateRouteSummary
|
220
|
+
SENSITIVE: []
|
221
|
+
end
|
222
|
+
|
223
|
+
class CalculateRouteSummary
|
224
|
+
attr_accessor data_source: ::String
|
225
|
+
attr_accessor distance: ::Float
|
226
|
+
attr_accessor distance_unit: ("Kilometers" | "Miles")
|
227
|
+
attr_accessor duration_seconds: ::Float
|
228
|
+
attr_accessor route_b_box: ::Array[::Float]
|
229
|
+
SENSITIVE: [:route_b_box]
|
230
|
+
end
|
231
|
+
|
232
|
+
class CalculateRouteTruckModeOptions
|
233
|
+
attr_accessor avoid_ferries: bool
|
234
|
+
attr_accessor avoid_tolls: bool
|
235
|
+
attr_accessor dimensions: Types::TruckDimensions
|
236
|
+
attr_accessor weight: Types::TruckWeight
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
240
|
+
class Circle
|
241
|
+
attr_accessor center: ::Array[::Float]
|
242
|
+
attr_accessor radius: ::Float
|
243
|
+
SENSITIVE: [:center]
|
244
|
+
end
|
245
|
+
|
246
|
+
class ConflictException
|
247
|
+
attr_accessor message: ::String
|
248
|
+
SENSITIVE: []
|
249
|
+
end
|
250
|
+
|
251
|
+
class CreateGeofenceCollectionRequest
|
252
|
+
attr_accessor collection_name: ::String
|
253
|
+
attr_accessor description: ::String
|
254
|
+
attr_accessor kms_key_id: ::String
|
255
|
+
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
256
|
+
attr_accessor pricing_plan_data_source: ::String
|
257
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
258
|
+
SENSITIVE: []
|
259
|
+
end
|
260
|
+
|
261
|
+
class CreateGeofenceCollectionResponse
|
262
|
+
attr_accessor collection_arn: ::String
|
263
|
+
attr_accessor collection_name: ::String
|
264
|
+
attr_accessor create_time: ::Time
|
265
|
+
SENSITIVE: []
|
266
|
+
end
|
267
|
+
|
268
|
+
class CreateKeyRequest
|
269
|
+
attr_accessor description: ::String
|
270
|
+
attr_accessor expire_time: ::Time
|
271
|
+
attr_accessor key_name: ::String
|
272
|
+
attr_accessor no_expiry: bool
|
273
|
+
attr_accessor restrictions: Types::ApiKeyRestrictions
|
274
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
275
|
+
SENSITIVE: []
|
276
|
+
end
|
277
|
+
|
278
|
+
class CreateKeyResponse
|
279
|
+
attr_accessor create_time: ::Time
|
280
|
+
attr_accessor key: ::String
|
281
|
+
attr_accessor key_arn: ::String
|
282
|
+
attr_accessor key_name: ::String
|
283
|
+
SENSITIVE: [:key]
|
284
|
+
end
|
285
|
+
|
286
|
+
class CreateMapRequest
|
287
|
+
attr_accessor configuration: Types::MapConfiguration
|
288
|
+
attr_accessor description: ::String
|
289
|
+
attr_accessor map_name: ::String
|
290
|
+
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
291
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
292
|
+
SENSITIVE: []
|
293
|
+
end
|
294
|
+
|
295
|
+
class CreateMapResponse
|
296
|
+
attr_accessor create_time: ::Time
|
297
|
+
attr_accessor map_arn: ::String
|
298
|
+
attr_accessor map_name: ::String
|
299
|
+
SENSITIVE: []
|
300
|
+
end
|
301
|
+
|
302
|
+
class CreatePlaceIndexRequest
|
303
|
+
attr_accessor data_source: ::String
|
304
|
+
attr_accessor data_source_configuration: Types::DataSourceConfiguration
|
305
|
+
attr_accessor description: ::String
|
306
|
+
attr_accessor index_name: ::String
|
307
|
+
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
308
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
309
|
+
SENSITIVE: []
|
310
|
+
end
|
311
|
+
|
312
|
+
class CreatePlaceIndexResponse
|
313
|
+
attr_accessor create_time: ::Time
|
314
|
+
attr_accessor index_arn: ::String
|
315
|
+
attr_accessor index_name: ::String
|
316
|
+
SENSITIVE: []
|
317
|
+
end
|
318
|
+
|
319
|
+
class CreateRouteCalculatorRequest
|
320
|
+
attr_accessor calculator_name: ::String
|
321
|
+
attr_accessor data_source: ::String
|
322
|
+
attr_accessor description: ::String
|
323
|
+
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
324
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
325
|
+
SENSITIVE: []
|
326
|
+
end
|
327
|
+
|
328
|
+
class CreateRouteCalculatorResponse
|
329
|
+
attr_accessor calculator_arn: ::String
|
330
|
+
attr_accessor calculator_name: ::String
|
331
|
+
attr_accessor create_time: ::Time
|
332
|
+
SENSITIVE: []
|
333
|
+
end
|
334
|
+
|
335
|
+
class CreateTrackerRequest
|
336
|
+
attr_accessor description: ::String
|
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 pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
342
|
+
attr_accessor pricing_plan_data_source: ::String
|
343
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
344
|
+
attr_accessor tracker_name: ::String
|
345
|
+
SENSITIVE: []
|
346
|
+
end
|
347
|
+
|
348
|
+
class CreateTrackerResponse
|
349
|
+
attr_accessor create_time: ::Time
|
350
|
+
attr_accessor tracker_arn: ::String
|
351
|
+
attr_accessor tracker_name: ::String
|
352
|
+
SENSITIVE: []
|
353
|
+
end
|
354
|
+
|
355
|
+
class DataSourceConfiguration
|
356
|
+
attr_accessor intended_use: ("SingleUse" | "Storage")
|
357
|
+
SENSITIVE: []
|
358
|
+
end
|
359
|
+
|
360
|
+
class DeleteGeofenceCollectionRequest
|
361
|
+
attr_accessor collection_name: ::String
|
362
|
+
SENSITIVE: []
|
363
|
+
end
|
364
|
+
|
365
|
+
class DeleteGeofenceCollectionResponse < Aws::EmptyStructure
|
366
|
+
end
|
367
|
+
|
368
|
+
class DeleteKeyRequest
|
369
|
+
attr_accessor force_delete: bool
|
370
|
+
attr_accessor key_name: ::String
|
371
|
+
SENSITIVE: []
|
372
|
+
end
|
373
|
+
|
374
|
+
class DeleteKeyResponse < Aws::EmptyStructure
|
375
|
+
end
|
376
|
+
|
377
|
+
class DeleteMapRequest
|
378
|
+
attr_accessor map_name: ::String
|
379
|
+
SENSITIVE: []
|
380
|
+
end
|
381
|
+
|
382
|
+
class DeleteMapResponse < Aws::EmptyStructure
|
383
|
+
end
|
384
|
+
|
385
|
+
class DeletePlaceIndexRequest
|
386
|
+
attr_accessor index_name: ::String
|
387
|
+
SENSITIVE: []
|
388
|
+
end
|
389
|
+
|
390
|
+
class DeletePlaceIndexResponse < Aws::EmptyStructure
|
391
|
+
end
|
392
|
+
|
393
|
+
class DeleteRouteCalculatorRequest
|
394
|
+
attr_accessor calculator_name: ::String
|
395
|
+
SENSITIVE: []
|
396
|
+
end
|
397
|
+
|
398
|
+
class DeleteRouteCalculatorResponse < Aws::EmptyStructure
|
399
|
+
end
|
400
|
+
|
401
|
+
class DeleteTrackerRequest
|
402
|
+
attr_accessor tracker_name: ::String
|
403
|
+
SENSITIVE: []
|
404
|
+
end
|
405
|
+
|
406
|
+
class DeleteTrackerResponse < Aws::EmptyStructure
|
407
|
+
end
|
408
|
+
|
409
|
+
class DescribeGeofenceCollectionRequest
|
410
|
+
attr_accessor collection_name: ::String
|
411
|
+
SENSITIVE: []
|
412
|
+
end
|
413
|
+
|
414
|
+
class DescribeGeofenceCollectionResponse
|
415
|
+
attr_accessor collection_arn: ::String
|
416
|
+
attr_accessor collection_name: ::String
|
417
|
+
attr_accessor create_time: ::Time
|
418
|
+
attr_accessor description: ::String
|
419
|
+
attr_accessor geofence_count: ::Integer
|
420
|
+
attr_accessor kms_key_id: ::String
|
421
|
+
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
422
|
+
attr_accessor pricing_plan_data_source: ::String
|
423
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
424
|
+
attr_accessor update_time: ::Time
|
425
|
+
SENSITIVE: []
|
426
|
+
end
|
427
|
+
|
428
|
+
class DescribeKeyRequest
|
429
|
+
attr_accessor key_name: ::String
|
430
|
+
SENSITIVE: []
|
431
|
+
end
|
432
|
+
|
433
|
+
class DescribeKeyResponse
|
434
|
+
attr_accessor create_time: ::Time
|
435
|
+
attr_accessor description: ::String
|
436
|
+
attr_accessor expire_time: ::Time
|
437
|
+
attr_accessor key: ::String
|
438
|
+
attr_accessor key_arn: ::String
|
439
|
+
attr_accessor key_name: ::String
|
440
|
+
attr_accessor restrictions: Types::ApiKeyRestrictions
|
441
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
442
|
+
attr_accessor update_time: ::Time
|
443
|
+
SENSITIVE: [:key]
|
444
|
+
end
|
445
|
+
|
446
|
+
class DescribeMapRequest
|
447
|
+
attr_accessor map_name: ::String
|
448
|
+
SENSITIVE: []
|
449
|
+
end
|
450
|
+
|
451
|
+
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
|
+
attr_accessor map_name: ::String
|
458
|
+
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
459
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
460
|
+
attr_accessor update_time: ::Time
|
461
|
+
SENSITIVE: []
|
462
|
+
end
|
463
|
+
|
464
|
+
class DescribePlaceIndexRequest
|
465
|
+
attr_accessor index_name: ::String
|
466
|
+
SENSITIVE: []
|
467
|
+
end
|
468
|
+
|
469
|
+
class DescribePlaceIndexResponse
|
470
|
+
attr_accessor create_time: ::Time
|
471
|
+
attr_accessor data_source: ::String
|
472
|
+
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
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
478
|
+
attr_accessor update_time: ::Time
|
479
|
+
SENSITIVE: []
|
480
|
+
end
|
481
|
+
|
482
|
+
class DescribeRouteCalculatorRequest
|
483
|
+
attr_accessor calculator_name: ::String
|
484
|
+
SENSITIVE: []
|
485
|
+
end
|
486
|
+
|
487
|
+
class DescribeRouteCalculatorResponse
|
488
|
+
attr_accessor calculator_arn: ::String
|
489
|
+
attr_accessor calculator_name: ::String
|
490
|
+
attr_accessor create_time: ::Time
|
491
|
+
attr_accessor data_source: ::String
|
492
|
+
attr_accessor description: ::String
|
493
|
+
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
494
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
495
|
+
attr_accessor update_time: ::Time
|
496
|
+
SENSITIVE: []
|
497
|
+
end
|
498
|
+
|
499
|
+
class DescribeTrackerRequest
|
500
|
+
attr_accessor tracker_name: ::String
|
501
|
+
SENSITIVE: []
|
502
|
+
end
|
503
|
+
|
504
|
+
class DescribeTrackerResponse
|
505
|
+
attr_accessor create_time: ::Time
|
506
|
+
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
|
+
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
512
|
+
attr_accessor pricing_plan_data_source: ::String
|
513
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
514
|
+
attr_accessor tracker_arn: ::String
|
515
|
+
attr_accessor tracker_name: ::String
|
516
|
+
attr_accessor update_time: ::Time
|
517
|
+
SENSITIVE: []
|
518
|
+
end
|
519
|
+
|
520
|
+
class DevicePosition
|
521
|
+
attr_accessor accuracy: Types::PositionalAccuracy
|
522
|
+
attr_accessor device_id: ::String
|
523
|
+
attr_accessor position: ::Array[::Float]
|
524
|
+
attr_accessor position_properties: ::Hash[::String, ::String]
|
525
|
+
attr_accessor received_time: ::Time
|
526
|
+
attr_accessor sample_time: ::Time
|
527
|
+
SENSITIVE: [:position, :position_properties]
|
528
|
+
end
|
529
|
+
|
530
|
+
class DevicePositionUpdate
|
531
|
+
attr_accessor accuracy: Types::PositionalAccuracy
|
532
|
+
attr_accessor device_id: ::String
|
533
|
+
attr_accessor position: ::Array[::Float]
|
534
|
+
attr_accessor position_properties: ::Hash[::String, ::String]
|
535
|
+
attr_accessor sample_time: ::Time
|
536
|
+
SENSITIVE: [:position, :position_properties]
|
537
|
+
end
|
538
|
+
|
539
|
+
class DisassociateTrackerConsumerRequest
|
540
|
+
attr_accessor consumer_arn: ::String
|
541
|
+
attr_accessor tracker_name: ::String
|
542
|
+
SENSITIVE: []
|
543
|
+
end
|
544
|
+
|
545
|
+
class DisassociateTrackerConsumerResponse < Aws::EmptyStructure
|
546
|
+
end
|
547
|
+
|
548
|
+
class GeofenceGeometry
|
549
|
+
attr_accessor circle: Types::Circle
|
550
|
+
attr_accessor polygon: ::Array[::Array[::Array[::Float]]]
|
551
|
+
SENSITIVE: [:circle]
|
552
|
+
end
|
553
|
+
|
554
|
+
class GetDevicePositionHistoryRequest
|
555
|
+
attr_accessor device_id: ::String
|
556
|
+
attr_accessor end_time_exclusive: ::Time
|
557
|
+
attr_accessor max_results: ::Integer
|
558
|
+
attr_accessor next_token: ::String
|
559
|
+
attr_accessor start_time_inclusive: ::Time
|
560
|
+
attr_accessor tracker_name: ::String
|
561
|
+
SENSITIVE: []
|
562
|
+
end
|
563
|
+
|
564
|
+
class GetDevicePositionHistoryResponse
|
565
|
+
attr_accessor device_positions: ::Array[Types::DevicePosition]
|
566
|
+
attr_accessor next_token: ::String
|
567
|
+
SENSITIVE: []
|
568
|
+
end
|
569
|
+
|
570
|
+
class GetDevicePositionRequest
|
571
|
+
attr_accessor device_id: ::String
|
572
|
+
attr_accessor tracker_name: ::String
|
573
|
+
SENSITIVE: []
|
574
|
+
end
|
575
|
+
|
576
|
+
class GetDevicePositionResponse
|
577
|
+
attr_accessor accuracy: Types::PositionalAccuracy
|
578
|
+
attr_accessor device_id: ::String
|
579
|
+
attr_accessor position: ::Array[::Float]
|
580
|
+
attr_accessor position_properties: ::Hash[::String, ::String]
|
581
|
+
attr_accessor received_time: ::Time
|
582
|
+
attr_accessor sample_time: ::Time
|
583
|
+
SENSITIVE: [:position, :position_properties]
|
584
|
+
end
|
585
|
+
|
586
|
+
class GetGeofenceRequest
|
587
|
+
attr_accessor collection_name: ::String
|
588
|
+
attr_accessor geofence_id: ::String
|
589
|
+
SENSITIVE: []
|
590
|
+
end
|
591
|
+
|
592
|
+
class GetGeofenceResponse
|
593
|
+
attr_accessor create_time: ::Time
|
594
|
+
attr_accessor geofence_id: ::String
|
595
|
+
attr_accessor geofence_properties: ::Hash[::String, ::String]
|
596
|
+
attr_accessor geometry: Types::GeofenceGeometry
|
597
|
+
attr_accessor status: ::String
|
598
|
+
attr_accessor update_time: ::Time
|
599
|
+
SENSITIVE: [:geofence_properties]
|
600
|
+
end
|
601
|
+
|
602
|
+
class GetMapGlyphsRequest
|
603
|
+
attr_accessor font_stack: ::String
|
604
|
+
attr_accessor font_unicode_range: ::String
|
605
|
+
attr_accessor key: ::String
|
606
|
+
attr_accessor map_name: ::String
|
607
|
+
SENSITIVE: [:key]
|
608
|
+
end
|
609
|
+
|
610
|
+
class GetMapGlyphsResponse
|
611
|
+
attr_accessor blob: ::IO
|
612
|
+
attr_accessor cache_control: ::String
|
613
|
+
attr_accessor content_type: ::String
|
614
|
+
SENSITIVE: []
|
615
|
+
end
|
616
|
+
|
617
|
+
class GetMapSpritesRequest
|
618
|
+
attr_accessor file_name: ::String
|
619
|
+
attr_accessor key: ::String
|
620
|
+
attr_accessor map_name: ::String
|
621
|
+
SENSITIVE: [:key]
|
622
|
+
end
|
623
|
+
|
624
|
+
class GetMapSpritesResponse
|
625
|
+
attr_accessor blob: ::IO
|
626
|
+
attr_accessor cache_control: ::String
|
627
|
+
attr_accessor content_type: ::String
|
628
|
+
SENSITIVE: []
|
629
|
+
end
|
630
|
+
|
631
|
+
class GetMapStyleDescriptorRequest
|
632
|
+
attr_accessor key: ::String
|
633
|
+
attr_accessor map_name: ::String
|
634
|
+
SENSITIVE: [:key]
|
635
|
+
end
|
636
|
+
|
637
|
+
class GetMapStyleDescriptorResponse
|
638
|
+
attr_accessor blob: ::IO
|
639
|
+
attr_accessor cache_control: ::String
|
640
|
+
attr_accessor content_type: ::String
|
641
|
+
SENSITIVE: []
|
642
|
+
end
|
643
|
+
|
644
|
+
class GetMapTileRequest
|
645
|
+
attr_accessor key: ::String
|
646
|
+
attr_accessor map_name: ::String
|
647
|
+
attr_accessor x: ::String
|
648
|
+
attr_accessor y: ::String
|
649
|
+
attr_accessor z: ::String
|
650
|
+
SENSITIVE: [:key]
|
651
|
+
end
|
652
|
+
|
653
|
+
class GetMapTileResponse
|
654
|
+
attr_accessor blob: ::IO
|
655
|
+
attr_accessor cache_control: ::String
|
656
|
+
attr_accessor content_type: ::String
|
657
|
+
SENSITIVE: []
|
658
|
+
end
|
659
|
+
|
660
|
+
class GetPlaceRequest
|
661
|
+
attr_accessor index_name: ::String
|
662
|
+
attr_accessor key: ::String
|
663
|
+
attr_accessor language: ::String
|
664
|
+
attr_accessor place_id: ::String
|
665
|
+
SENSITIVE: [:key]
|
666
|
+
end
|
667
|
+
|
668
|
+
class GetPlaceResponse
|
669
|
+
attr_accessor place: Types::Place
|
670
|
+
SENSITIVE: []
|
671
|
+
end
|
672
|
+
|
673
|
+
class InternalServerException
|
674
|
+
attr_accessor message: ::String
|
675
|
+
SENSITIVE: []
|
676
|
+
end
|
677
|
+
|
678
|
+
class Leg
|
679
|
+
attr_accessor distance: ::Float
|
680
|
+
attr_accessor duration_seconds: ::Float
|
681
|
+
attr_accessor end_position: ::Array[::Float]
|
682
|
+
attr_accessor geometry: Types::LegGeometry
|
683
|
+
attr_accessor start_position: ::Array[::Float]
|
684
|
+
attr_accessor steps: ::Array[Types::Step]
|
685
|
+
SENSITIVE: [:end_position, :start_position]
|
686
|
+
end
|
687
|
+
|
688
|
+
class LegGeometry
|
689
|
+
attr_accessor line_string: ::Array[::Array[::Float]]
|
690
|
+
SENSITIVE: []
|
691
|
+
end
|
692
|
+
|
693
|
+
class ListDevicePositionsRequest
|
694
|
+
attr_accessor filter_geometry: Types::TrackingFilterGeometry
|
695
|
+
attr_accessor max_results: ::Integer
|
696
|
+
attr_accessor next_token: ::String
|
697
|
+
attr_accessor tracker_name: ::String
|
698
|
+
SENSITIVE: []
|
699
|
+
end
|
700
|
+
|
701
|
+
class ListDevicePositionsResponse
|
702
|
+
attr_accessor entries: ::Array[Types::ListDevicePositionsResponseEntry]
|
703
|
+
attr_accessor next_token: ::String
|
704
|
+
SENSITIVE: []
|
705
|
+
end
|
706
|
+
|
707
|
+
class ListDevicePositionsResponseEntry
|
708
|
+
attr_accessor accuracy: Types::PositionalAccuracy
|
709
|
+
attr_accessor device_id: ::String
|
710
|
+
attr_accessor position: ::Array[::Float]
|
711
|
+
attr_accessor position_properties: ::Hash[::String, ::String]
|
712
|
+
attr_accessor sample_time: ::Time
|
713
|
+
SENSITIVE: [:position, :position_properties]
|
714
|
+
end
|
715
|
+
|
716
|
+
class ListGeofenceCollectionsRequest
|
717
|
+
attr_accessor max_results: ::Integer
|
718
|
+
attr_accessor next_token: ::String
|
719
|
+
SENSITIVE: []
|
720
|
+
end
|
721
|
+
|
722
|
+
class ListGeofenceCollectionsResponse
|
723
|
+
attr_accessor entries: ::Array[Types::ListGeofenceCollectionsResponseEntry]
|
724
|
+
attr_accessor next_token: ::String
|
725
|
+
SENSITIVE: []
|
726
|
+
end
|
727
|
+
|
728
|
+
class ListGeofenceCollectionsResponseEntry
|
729
|
+
attr_accessor collection_name: ::String
|
730
|
+
attr_accessor create_time: ::Time
|
731
|
+
attr_accessor description: ::String
|
732
|
+
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
733
|
+
attr_accessor pricing_plan_data_source: ::String
|
734
|
+
attr_accessor update_time: ::Time
|
735
|
+
SENSITIVE: []
|
736
|
+
end
|
737
|
+
|
738
|
+
class ListGeofenceResponseEntry
|
739
|
+
attr_accessor create_time: ::Time
|
740
|
+
attr_accessor geofence_id: ::String
|
741
|
+
attr_accessor geofence_properties: ::Hash[::String, ::String]
|
742
|
+
attr_accessor geometry: Types::GeofenceGeometry
|
743
|
+
attr_accessor status: ::String
|
744
|
+
attr_accessor update_time: ::Time
|
745
|
+
SENSITIVE: [:geofence_properties]
|
746
|
+
end
|
747
|
+
|
748
|
+
class ListGeofencesRequest
|
749
|
+
attr_accessor collection_name: ::String
|
750
|
+
attr_accessor max_results: ::Integer
|
751
|
+
attr_accessor next_token: ::String
|
752
|
+
SENSITIVE: []
|
753
|
+
end
|
754
|
+
|
755
|
+
class ListGeofencesResponse
|
756
|
+
attr_accessor entries: ::Array[Types::ListGeofenceResponseEntry]
|
757
|
+
attr_accessor next_token: ::String
|
758
|
+
SENSITIVE: []
|
759
|
+
end
|
760
|
+
|
761
|
+
class ListKeysRequest
|
762
|
+
attr_accessor filter: Types::ApiKeyFilter
|
763
|
+
attr_accessor max_results: ::Integer
|
764
|
+
attr_accessor next_token: ::String
|
765
|
+
SENSITIVE: []
|
766
|
+
end
|
767
|
+
|
768
|
+
class ListKeysResponse
|
769
|
+
attr_accessor entries: ::Array[Types::ListKeysResponseEntry]
|
770
|
+
attr_accessor next_token: ::String
|
771
|
+
SENSITIVE: []
|
772
|
+
end
|
773
|
+
|
774
|
+
class ListKeysResponseEntry
|
775
|
+
attr_accessor create_time: ::Time
|
776
|
+
attr_accessor description: ::String
|
777
|
+
attr_accessor expire_time: ::Time
|
778
|
+
attr_accessor key_name: ::String
|
779
|
+
attr_accessor restrictions: Types::ApiKeyRestrictions
|
780
|
+
attr_accessor update_time: ::Time
|
781
|
+
SENSITIVE: []
|
782
|
+
end
|
783
|
+
|
784
|
+
class ListMapsRequest
|
785
|
+
attr_accessor max_results: ::Integer
|
786
|
+
attr_accessor next_token: ::String
|
787
|
+
SENSITIVE: []
|
788
|
+
end
|
789
|
+
|
790
|
+
class ListMapsResponse
|
791
|
+
attr_accessor entries: ::Array[Types::ListMapsResponseEntry]
|
792
|
+
attr_accessor next_token: ::String
|
793
|
+
SENSITIVE: []
|
794
|
+
end
|
795
|
+
|
796
|
+
class ListMapsResponseEntry
|
797
|
+
attr_accessor create_time: ::Time
|
798
|
+
attr_accessor data_source: ::String
|
799
|
+
attr_accessor description: ::String
|
800
|
+
attr_accessor map_name: ::String
|
801
|
+
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
802
|
+
attr_accessor update_time: ::Time
|
803
|
+
SENSITIVE: []
|
804
|
+
end
|
805
|
+
|
806
|
+
class ListPlaceIndexesRequest
|
807
|
+
attr_accessor max_results: ::Integer
|
808
|
+
attr_accessor next_token: ::String
|
809
|
+
SENSITIVE: []
|
810
|
+
end
|
811
|
+
|
812
|
+
class ListPlaceIndexesResponse
|
813
|
+
attr_accessor entries: ::Array[Types::ListPlaceIndexesResponseEntry]
|
814
|
+
attr_accessor next_token: ::String
|
815
|
+
SENSITIVE: []
|
816
|
+
end
|
817
|
+
|
818
|
+
class ListPlaceIndexesResponseEntry
|
819
|
+
attr_accessor create_time: ::Time
|
820
|
+
attr_accessor data_source: ::String
|
821
|
+
attr_accessor description: ::String
|
822
|
+
attr_accessor index_name: ::String
|
823
|
+
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
824
|
+
attr_accessor update_time: ::Time
|
825
|
+
SENSITIVE: []
|
826
|
+
end
|
827
|
+
|
828
|
+
class ListRouteCalculatorsRequest
|
829
|
+
attr_accessor max_results: ::Integer
|
830
|
+
attr_accessor next_token: ::String
|
831
|
+
SENSITIVE: []
|
832
|
+
end
|
833
|
+
|
834
|
+
class ListRouteCalculatorsResponse
|
835
|
+
attr_accessor entries: ::Array[Types::ListRouteCalculatorsResponseEntry]
|
836
|
+
attr_accessor next_token: ::String
|
837
|
+
SENSITIVE: []
|
838
|
+
end
|
839
|
+
|
840
|
+
class ListRouteCalculatorsResponseEntry
|
841
|
+
attr_accessor calculator_name: ::String
|
842
|
+
attr_accessor create_time: ::Time
|
843
|
+
attr_accessor data_source: ::String
|
844
|
+
attr_accessor description: ::String
|
845
|
+
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
846
|
+
attr_accessor update_time: ::Time
|
847
|
+
SENSITIVE: []
|
848
|
+
end
|
849
|
+
|
850
|
+
class ListTagsForResourceRequest
|
851
|
+
attr_accessor resource_arn: ::String
|
852
|
+
SENSITIVE: []
|
853
|
+
end
|
854
|
+
|
855
|
+
class ListTagsForResourceResponse
|
856
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
857
|
+
SENSITIVE: []
|
858
|
+
end
|
859
|
+
|
860
|
+
class ListTrackerConsumersRequest
|
861
|
+
attr_accessor max_results: ::Integer
|
862
|
+
attr_accessor next_token: ::String
|
863
|
+
attr_accessor tracker_name: ::String
|
864
|
+
SENSITIVE: []
|
865
|
+
end
|
866
|
+
|
867
|
+
class ListTrackerConsumersResponse
|
868
|
+
attr_accessor consumer_arns: ::Array[::String]
|
869
|
+
attr_accessor next_token: ::String
|
870
|
+
SENSITIVE: []
|
871
|
+
end
|
872
|
+
|
873
|
+
class ListTrackersRequest
|
874
|
+
attr_accessor max_results: ::Integer
|
875
|
+
attr_accessor next_token: ::String
|
876
|
+
SENSITIVE: []
|
877
|
+
end
|
878
|
+
|
879
|
+
class ListTrackersResponse
|
880
|
+
attr_accessor entries: ::Array[Types::ListTrackersResponseEntry]
|
881
|
+
attr_accessor next_token: ::String
|
882
|
+
SENSITIVE: []
|
883
|
+
end
|
884
|
+
|
885
|
+
class ListTrackersResponseEntry
|
886
|
+
attr_accessor create_time: ::Time
|
887
|
+
attr_accessor description: ::String
|
888
|
+
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
889
|
+
attr_accessor pricing_plan_data_source: ::String
|
890
|
+
attr_accessor tracker_name: ::String
|
891
|
+
attr_accessor update_time: ::Time
|
892
|
+
SENSITIVE: []
|
893
|
+
end
|
894
|
+
|
895
|
+
class MapConfiguration
|
896
|
+
attr_accessor custom_layers: ::Array[::String]
|
897
|
+
attr_accessor political_view: ::String
|
898
|
+
attr_accessor style: ::String
|
899
|
+
SENSITIVE: []
|
900
|
+
end
|
901
|
+
|
902
|
+
class MapConfigurationUpdate
|
903
|
+
attr_accessor custom_layers: ::Array[::String]
|
904
|
+
attr_accessor political_view: ::String
|
905
|
+
SENSITIVE: []
|
906
|
+
end
|
907
|
+
|
908
|
+
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
|
+
attr_accessor label: ::String
|
915
|
+
attr_accessor municipality: ::String
|
916
|
+
attr_accessor neighborhood: ::String
|
917
|
+
attr_accessor postal_code: ::String
|
918
|
+
attr_accessor region: ::String
|
919
|
+
attr_accessor street: ::String
|
920
|
+
attr_accessor sub_municipality: ::String
|
921
|
+
attr_accessor sub_region: ::String
|
922
|
+
attr_accessor supplemental_categories: ::Array[::String]
|
923
|
+
attr_accessor time_zone: Types::TimeZone
|
924
|
+
attr_accessor unit_number: ::String
|
925
|
+
attr_accessor unit_type: ::String
|
926
|
+
SENSITIVE: []
|
927
|
+
end
|
928
|
+
|
929
|
+
class PlaceGeometry
|
930
|
+
attr_accessor point: ::Array[::Float]
|
931
|
+
SENSITIVE: [:point]
|
932
|
+
end
|
933
|
+
|
934
|
+
class PositionalAccuracy
|
935
|
+
attr_accessor horizontal: ::Float
|
936
|
+
SENSITIVE: []
|
937
|
+
end
|
938
|
+
|
939
|
+
class PutGeofenceRequest
|
940
|
+
attr_accessor collection_name: ::String
|
941
|
+
attr_accessor geofence_id: ::String
|
942
|
+
attr_accessor geofence_properties: ::Hash[::String, ::String]
|
943
|
+
attr_accessor geometry: Types::GeofenceGeometry
|
944
|
+
SENSITIVE: [:geofence_properties]
|
945
|
+
end
|
946
|
+
|
947
|
+
class PutGeofenceResponse
|
948
|
+
attr_accessor create_time: ::Time
|
949
|
+
attr_accessor geofence_id: ::String
|
950
|
+
attr_accessor update_time: ::Time
|
951
|
+
SENSITIVE: []
|
952
|
+
end
|
953
|
+
|
954
|
+
class ResourceNotFoundException
|
955
|
+
attr_accessor message: ::String
|
956
|
+
SENSITIVE: []
|
957
|
+
end
|
958
|
+
|
959
|
+
class RouteMatrixEntry
|
960
|
+
attr_accessor distance: ::Float
|
961
|
+
attr_accessor duration_seconds: ::Float
|
962
|
+
attr_accessor error: Types::RouteMatrixEntryError
|
963
|
+
SENSITIVE: []
|
964
|
+
end
|
965
|
+
|
966
|
+
class RouteMatrixEntryError
|
967
|
+
attr_accessor code: ("RouteNotFound" | "RouteTooLong" | "PositionsNotFound" | "DestinationPositionNotFound" | "DeparturePositionNotFound" | "OtherValidationError")
|
968
|
+
attr_accessor message: ::String
|
969
|
+
SENSITIVE: []
|
970
|
+
end
|
971
|
+
|
972
|
+
class SearchForPositionResult
|
973
|
+
attr_accessor distance: ::Float
|
974
|
+
attr_accessor place: Types::Place
|
975
|
+
attr_accessor place_id: ::String
|
976
|
+
SENSITIVE: []
|
977
|
+
end
|
978
|
+
|
979
|
+
class SearchForSuggestionsResult
|
980
|
+
attr_accessor categories: ::Array[::String]
|
981
|
+
attr_accessor place_id: ::String
|
982
|
+
attr_accessor supplemental_categories: ::Array[::String]
|
983
|
+
attr_accessor text: ::String
|
984
|
+
SENSITIVE: []
|
985
|
+
end
|
986
|
+
|
987
|
+
class SearchForTextResult
|
988
|
+
attr_accessor distance: ::Float
|
989
|
+
attr_accessor place: Types::Place
|
990
|
+
attr_accessor place_id: ::String
|
991
|
+
attr_accessor relevance: ::Float
|
992
|
+
SENSITIVE: []
|
993
|
+
end
|
994
|
+
|
995
|
+
class SearchPlaceIndexForPositionRequest
|
996
|
+
attr_accessor index_name: ::String
|
997
|
+
attr_accessor key: ::String
|
998
|
+
attr_accessor language: ::String
|
999
|
+
attr_accessor max_results: ::Integer
|
1000
|
+
attr_accessor position: ::Array[::Float]
|
1001
|
+
SENSITIVE: [:key, :position]
|
1002
|
+
end
|
1003
|
+
|
1004
|
+
class SearchPlaceIndexForPositionResponse
|
1005
|
+
attr_accessor results: ::Array[Types::SearchForPositionResult]
|
1006
|
+
attr_accessor summary: Types::SearchPlaceIndexForPositionSummary
|
1007
|
+
SENSITIVE: []
|
1008
|
+
end
|
1009
|
+
|
1010
|
+
class SearchPlaceIndexForPositionSummary
|
1011
|
+
attr_accessor data_source: ::String
|
1012
|
+
attr_accessor language: ::String
|
1013
|
+
attr_accessor max_results: ::Integer
|
1014
|
+
attr_accessor position: ::Array[::Float]
|
1015
|
+
SENSITIVE: [:position]
|
1016
|
+
end
|
1017
|
+
|
1018
|
+
class SearchPlaceIndexForSuggestionsRequest
|
1019
|
+
attr_accessor bias_position: ::Array[::Float]
|
1020
|
+
attr_accessor filter_b_box: ::Array[::Float]
|
1021
|
+
attr_accessor filter_categories: ::Array[::String]
|
1022
|
+
attr_accessor filter_countries: ::Array[::String]
|
1023
|
+
attr_accessor index_name: ::String
|
1024
|
+
attr_accessor key: ::String
|
1025
|
+
attr_accessor language: ::String
|
1026
|
+
attr_accessor max_results: ::Integer
|
1027
|
+
attr_accessor text: ::String
|
1028
|
+
SENSITIVE: [:bias_position, :filter_b_box, :key, :text]
|
1029
|
+
end
|
1030
|
+
|
1031
|
+
class SearchPlaceIndexForSuggestionsResponse
|
1032
|
+
attr_accessor results: ::Array[Types::SearchForSuggestionsResult]
|
1033
|
+
attr_accessor summary: Types::SearchPlaceIndexForSuggestionsSummary
|
1034
|
+
SENSITIVE: []
|
1035
|
+
end
|
1036
|
+
|
1037
|
+
class SearchPlaceIndexForSuggestionsSummary
|
1038
|
+
attr_accessor bias_position: ::Array[::Float]
|
1039
|
+
attr_accessor data_source: ::String
|
1040
|
+
attr_accessor filter_b_box: ::Array[::Float]
|
1041
|
+
attr_accessor filter_categories: ::Array[::String]
|
1042
|
+
attr_accessor filter_countries: ::Array[::String]
|
1043
|
+
attr_accessor language: ::String
|
1044
|
+
attr_accessor max_results: ::Integer
|
1045
|
+
attr_accessor text: ::String
|
1046
|
+
SENSITIVE: [:bias_position, :filter_b_box, :text]
|
1047
|
+
end
|
1048
|
+
|
1049
|
+
class SearchPlaceIndexForTextRequest
|
1050
|
+
attr_accessor bias_position: ::Array[::Float]
|
1051
|
+
attr_accessor filter_b_box: ::Array[::Float]
|
1052
|
+
attr_accessor filter_categories: ::Array[::String]
|
1053
|
+
attr_accessor filter_countries: ::Array[::String]
|
1054
|
+
attr_accessor index_name: ::String
|
1055
|
+
attr_accessor key: ::String
|
1056
|
+
attr_accessor language: ::String
|
1057
|
+
attr_accessor max_results: ::Integer
|
1058
|
+
attr_accessor text: ::String
|
1059
|
+
SENSITIVE: [:bias_position, :filter_b_box, :key, :text]
|
1060
|
+
end
|
1061
|
+
|
1062
|
+
class SearchPlaceIndexForTextResponse
|
1063
|
+
attr_accessor results: ::Array[Types::SearchForTextResult]
|
1064
|
+
attr_accessor summary: Types::SearchPlaceIndexForTextSummary
|
1065
|
+
SENSITIVE: []
|
1066
|
+
end
|
1067
|
+
|
1068
|
+
class SearchPlaceIndexForTextSummary
|
1069
|
+
attr_accessor bias_position: ::Array[::Float]
|
1070
|
+
attr_accessor data_source: ::String
|
1071
|
+
attr_accessor filter_b_box: ::Array[::Float]
|
1072
|
+
attr_accessor filter_categories: ::Array[::String]
|
1073
|
+
attr_accessor filter_countries: ::Array[::String]
|
1074
|
+
attr_accessor language: ::String
|
1075
|
+
attr_accessor max_results: ::Integer
|
1076
|
+
attr_accessor result_b_box: ::Array[::Float]
|
1077
|
+
attr_accessor text: ::String
|
1078
|
+
SENSITIVE: [:bias_position, :filter_b_box, :result_b_box, :text]
|
1079
|
+
end
|
1080
|
+
|
1081
|
+
class ServiceQuotaExceededException
|
1082
|
+
attr_accessor message: ::String
|
1083
|
+
SENSITIVE: []
|
1084
|
+
end
|
1085
|
+
|
1086
|
+
class Step
|
1087
|
+
attr_accessor distance: ::Float
|
1088
|
+
attr_accessor duration_seconds: ::Float
|
1089
|
+
attr_accessor end_position: ::Array[::Float]
|
1090
|
+
attr_accessor geometry_offset: ::Integer
|
1091
|
+
attr_accessor start_position: ::Array[::Float]
|
1092
|
+
SENSITIVE: [:end_position, :start_position]
|
1093
|
+
end
|
1094
|
+
|
1095
|
+
class TagResourceRequest
|
1096
|
+
attr_accessor resource_arn: ::String
|
1097
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1098
|
+
SENSITIVE: []
|
1099
|
+
end
|
1100
|
+
|
1101
|
+
class TagResourceResponse < Aws::EmptyStructure
|
1102
|
+
end
|
1103
|
+
|
1104
|
+
class ThrottlingException
|
1105
|
+
attr_accessor message: ::String
|
1106
|
+
SENSITIVE: []
|
1107
|
+
end
|
1108
|
+
|
1109
|
+
class TimeZone
|
1110
|
+
attr_accessor name: ::String
|
1111
|
+
attr_accessor offset: ::Integer
|
1112
|
+
SENSITIVE: []
|
1113
|
+
end
|
1114
|
+
|
1115
|
+
class TrackingFilterGeometry
|
1116
|
+
attr_accessor polygon: ::Array[::Array[::Array[::Float]]]
|
1117
|
+
SENSITIVE: []
|
1118
|
+
end
|
1119
|
+
|
1120
|
+
class TruckDimensions
|
1121
|
+
attr_accessor height: ::Float
|
1122
|
+
attr_accessor length: ::Float
|
1123
|
+
attr_accessor unit: ("Meters" | "Feet")
|
1124
|
+
attr_accessor width: ::Float
|
1125
|
+
SENSITIVE: []
|
1126
|
+
end
|
1127
|
+
|
1128
|
+
class TruckWeight
|
1129
|
+
attr_accessor total: ::Float
|
1130
|
+
attr_accessor unit: ("Kilograms" | "Pounds")
|
1131
|
+
SENSITIVE: []
|
1132
|
+
end
|
1133
|
+
|
1134
|
+
class UntagResourceRequest
|
1135
|
+
attr_accessor resource_arn: ::String
|
1136
|
+
attr_accessor tag_keys: ::Array[::String]
|
1137
|
+
SENSITIVE: []
|
1138
|
+
end
|
1139
|
+
|
1140
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
1141
|
+
end
|
1142
|
+
|
1143
|
+
class UpdateGeofenceCollectionRequest
|
1144
|
+
attr_accessor collection_name: ::String
|
1145
|
+
attr_accessor description: ::String
|
1146
|
+
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
1147
|
+
attr_accessor pricing_plan_data_source: ::String
|
1148
|
+
SENSITIVE: []
|
1149
|
+
end
|
1150
|
+
|
1151
|
+
class UpdateGeofenceCollectionResponse
|
1152
|
+
attr_accessor collection_arn: ::String
|
1153
|
+
attr_accessor collection_name: ::String
|
1154
|
+
attr_accessor update_time: ::Time
|
1155
|
+
SENSITIVE: []
|
1156
|
+
end
|
1157
|
+
|
1158
|
+
class UpdateKeyRequest
|
1159
|
+
attr_accessor description: ::String
|
1160
|
+
attr_accessor expire_time: ::Time
|
1161
|
+
attr_accessor force_update: bool
|
1162
|
+
attr_accessor key_name: ::String
|
1163
|
+
attr_accessor no_expiry: bool
|
1164
|
+
attr_accessor restrictions: Types::ApiKeyRestrictions
|
1165
|
+
SENSITIVE: []
|
1166
|
+
end
|
1167
|
+
|
1168
|
+
class UpdateKeyResponse
|
1169
|
+
attr_accessor key_arn: ::String
|
1170
|
+
attr_accessor key_name: ::String
|
1171
|
+
attr_accessor update_time: ::Time
|
1172
|
+
SENSITIVE: []
|
1173
|
+
end
|
1174
|
+
|
1175
|
+
class UpdateMapRequest
|
1176
|
+
attr_accessor configuration_update: Types::MapConfigurationUpdate
|
1177
|
+
attr_accessor description: ::String
|
1178
|
+
attr_accessor map_name: ::String
|
1179
|
+
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
1180
|
+
SENSITIVE: []
|
1181
|
+
end
|
1182
|
+
|
1183
|
+
class UpdateMapResponse
|
1184
|
+
attr_accessor map_arn: ::String
|
1185
|
+
attr_accessor map_name: ::String
|
1186
|
+
attr_accessor update_time: ::Time
|
1187
|
+
SENSITIVE: []
|
1188
|
+
end
|
1189
|
+
|
1190
|
+
class UpdatePlaceIndexRequest
|
1191
|
+
attr_accessor data_source_configuration: Types::DataSourceConfiguration
|
1192
|
+
attr_accessor description: ::String
|
1193
|
+
attr_accessor index_name: ::String
|
1194
|
+
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
1195
|
+
SENSITIVE: []
|
1196
|
+
end
|
1197
|
+
|
1198
|
+
class UpdatePlaceIndexResponse
|
1199
|
+
attr_accessor index_arn: ::String
|
1200
|
+
attr_accessor index_name: ::String
|
1201
|
+
attr_accessor update_time: ::Time
|
1202
|
+
SENSITIVE: []
|
1203
|
+
end
|
1204
|
+
|
1205
|
+
class UpdateRouteCalculatorRequest
|
1206
|
+
attr_accessor calculator_name: ::String
|
1207
|
+
attr_accessor description: ::String
|
1208
|
+
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
1209
|
+
SENSITIVE: []
|
1210
|
+
end
|
1211
|
+
|
1212
|
+
class UpdateRouteCalculatorResponse
|
1213
|
+
attr_accessor calculator_arn: ::String
|
1214
|
+
attr_accessor calculator_name: ::String
|
1215
|
+
attr_accessor update_time: ::Time
|
1216
|
+
SENSITIVE: []
|
1217
|
+
end
|
1218
|
+
|
1219
|
+
class UpdateTrackerRequest
|
1220
|
+
attr_accessor description: ::String
|
1221
|
+
attr_accessor event_bridge_enabled: bool
|
1222
|
+
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
|
+
SENSITIVE: []
|
1228
|
+
end
|
1229
|
+
|
1230
|
+
class UpdateTrackerResponse
|
1231
|
+
attr_accessor tracker_arn: ::String
|
1232
|
+
attr_accessor tracker_name: ::String
|
1233
|
+
attr_accessor update_time: ::Time
|
1234
|
+
SENSITIVE: []
|
1235
|
+
end
|
1236
|
+
|
1237
|
+
class ValidationException
|
1238
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
1239
|
+
attr_accessor message: ::String
|
1240
|
+
attr_accessor reason: ("UnknownOperation" | "Missing" | "CannotParse" | "FieldValidationFailed" | "Other")
|
1241
|
+
SENSITIVE: []
|
1242
|
+
end
|
1243
|
+
|
1244
|
+
class ValidationExceptionField
|
1245
|
+
attr_accessor message: ::String
|
1246
|
+
attr_accessor name: ::String
|
1247
|
+
SENSITIVE: []
|
1248
|
+
end
|
1249
|
+
end
|
1250
|
+
end
|