aws-sdk-iotfleetwise 1.20.0 → 1.22.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-iotfleetwise/client.rb +70 -46
- data/lib/aws-sdk-iotfleetwise/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-iotfleetwise.rb +1 -1
- data/sig/client.rbs +1304 -0
- data/sig/errors.rbs +63 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +1281 -0
- data/sig/waiters.rbs +13 -0
- metadata +9 -4
data/sig/types.rbs
ADDED
@@ -0,0 +1,1281 @@
|
|
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::IoTFleetWise
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class Actuator
|
17
|
+
attr_accessor fully_qualified_name: ::String
|
18
|
+
attr_accessor data_type: ("INT8" | "UINT8" | "INT16" | "UINT16" | "INT32" | "UINT32" | "INT64" | "UINT64" | "BOOLEAN" | "FLOAT" | "DOUBLE" | "STRING" | "UNIX_TIMESTAMP" | "INT8_ARRAY" | "UINT8_ARRAY" | "INT16_ARRAY" | "UINT16_ARRAY" | "INT32_ARRAY" | "UINT32_ARRAY" | "INT64_ARRAY" | "UINT64_ARRAY" | "BOOLEAN_ARRAY" | "FLOAT_ARRAY" | "DOUBLE_ARRAY" | "STRING_ARRAY" | "UNIX_TIMESTAMP_ARRAY" | "UNKNOWN" | "STRUCT" | "STRUCT_ARRAY")
|
19
|
+
attr_accessor description: ::String
|
20
|
+
attr_accessor unit: ::String
|
21
|
+
attr_accessor allowed_values: ::Array[::String]
|
22
|
+
attr_accessor min: ::Float
|
23
|
+
attr_accessor max: ::Float
|
24
|
+
attr_accessor assigned_value: ::String
|
25
|
+
attr_accessor deprecation_message: ::String
|
26
|
+
attr_accessor comment: ::String
|
27
|
+
attr_accessor struct_fully_qualified_name: ::String
|
28
|
+
SENSITIVE: []
|
29
|
+
end
|
30
|
+
|
31
|
+
class AssociateVehicleFleetRequest
|
32
|
+
attr_accessor vehicle_name: ::String
|
33
|
+
attr_accessor fleet_id: ::String
|
34
|
+
SENSITIVE: []
|
35
|
+
end
|
36
|
+
|
37
|
+
class AssociateVehicleFleetResponse < Aws::EmptyStructure
|
38
|
+
end
|
39
|
+
|
40
|
+
class Attribute
|
41
|
+
attr_accessor fully_qualified_name: ::String
|
42
|
+
attr_accessor data_type: ("INT8" | "UINT8" | "INT16" | "UINT16" | "INT32" | "UINT32" | "INT64" | "UINT64" | "BOOLEAN" | "FLOAT" | "DOUBLE" | "STRING" | "UNIX_TIMESTAMP" | "INT8_ARRAY" | "UINT8_ARRAY" | "INT16_ARRAY" | "UINT16_ARRAY" | "INT32_ARRAY" | "UINT32_ARRAY" | "INT64_ARRAY" | "UINT64_ARRAY" | "BOOLEAN_ARRAY" | "FLOAT_ARRAY" | "DOUBLE_ARRAY" | "STRING_ARRAY" | "UNIX_TIMESTAMP_ARRAY" | "UNKNOWN" | "STRUCT" | "STRUCT_ARRAY")
|
43
|
+
attr_accessor description: ::String
|
44
|
+
attr_accessor unit: ::String
|
45
|
+
attr_accessor allowed_values: ::Array[::String]
|
46
|
+
attr_accessor min: ::Float
|
47
|
+
attr_accessor max: ::Float
|
48
|
+
attr_accessor assigned_value: ::String
|
49
|
+
attr_accessor default_value: ::String
|
50
|
+
attr_accessor deprecation_message: ::String
|
51
|
+
attr_accessor comment: ::String
|
52
|
+
SENSITIVE: []
|
53
|
+
end
|
54
|
+
|
55
|
+
class BatchCreateVehicleRequest
|
56
|
+
attr_accessor vehicles: ::Array[Types::CreateVehicleRequestItem]
|
57
|
+
SENSITIVE: []
|
58
|
+
end
|
59
|
+
|
60
|
+
class BatchCreateVehicleResponse
|
61
|
+
attr_accessor vehicles: ::Array[Types::CreateVehicleResponseItem]
|
62
|
+
attr_accessor errors: ::Array[Types::CreateVehicleError]
|
63
|
+
SENSITIVE: []
|
64
|
+
end
|
65
|
+
|
66
|
+
class BatchUpdateVehicleRequest
|
67
|
+
attr_accessor vehicles: ::Array[Types::UpdateVehicleRequestItem]
|
68
|
+
SENSITIVE: []
|
69
|
+
end
|
70
|
+
|
71
|
+
class BatchUpdateVehicleResponse
|
72
|
+
attr_accessor vehicles: ::Array[Types::UpdateVehicleResponseItem]
|
73
|
+
attr_accessor errors: ::Array[Types::UpdateVehicleError]
|
74
|
+
SENSITIVE: []
|
75
|
+
end
|
76
|
+
|
77
|
+
class Branch
|
78
|
+
attr_accessor fully_qualified_name: ::String
|
79
|
+
attr_accessor description: ::String
|
80
|
+
attr_accessor deprecation_message: ::String
|
81
|
+
attr_accessor comment: ::String
|
82
|
+
SENSITIVE: []
|
83
|
+
end
|
84
|
+
|
85
|
+
class CampaignSummary
|
86
|
+
attr_accessor arn: ::String
|
87
|
+
attr_accessor name: ::String
|
88
|
+
attr_accessor description: ::String
|
89
|
+
attr_accessor signal_catalog_arn: ::String
|
90
|
+
attr_accessor target_arn: ::String
|
91
|
+
attr_accessor status: ("CREATING" | "WAITING_FOR_APPROVAL" | "RUNNING" | "SUSPENDED")
|
92
|
+
attr_accessor creation_time: ::Time
|
93
|
+
attr_accessor last_modification_time: ::Time
|
94
|
+
SENSITIVE: []
|
95
|
+
end
|
96
|
+
|
97
|
+
class CanDbcDefinition
|
98
|
+
attr_accessor network_interface: ::String
|
99
|
+
attr_accessor can_dbc_files: ::Array[::String]
|
100
|
+
attr_accessor signals_map: ::Hash[::String, ::String]
|
101
|
+
SENSITIVE: []
|
102
|
+
end
|
103
|
+
|
104
|
+
class CanInterface
|
105
|
+
attr_accessor name: ::String
|
106
|
+
attr_accessor protocol_name: ::String
|
107
|
+
attr_accessor protocol_version: ::String
|
108
|
+
SENSITIVE: []
|
109
|
+
end
|
110
|
+
|
111
|
+
class CanSignal
|
112
|
+
attr_accessor message_id: ::Integer
|
113
|
+
attr_accessor is_big_endian: bool
|
114
|
+
attr_accessor is_signed: bool
|
115
|
+
attr_accessor start_bit: ::Integer
|
116
|
+
attr_accessor offset: ::Float
|
117
|
+
attr_accessor factor: ::Float
|
118
|
+
attr_accessor length: ::Integer
|
119
|
+
attr_accessor name: ::String
|
120
|
+
SENSITIVE: []
|
121
|
+
end
|
122
|
+
|
123
|
+
class CloudWatchLogDeliveryOptions
|
124
|
+
attr_accessor log_type: ("OFF" | "ERROR")
|
125
|
+
attr_accessor log_group_name: ::String
|
126
|
+
SENSITIVE: []
|
127
|
+
end
|
128
|
+
|
129
|
+
class CollectionScheme
|
130
|
+
attr_accessor time_based_collection_scheme: Types::TimeBasedCollectionScheme
|
131
|
+
attr_accessor condition_based_collection_scheme: Types::ConditionBasedCollectionScheme
|
132
|
+
attr_accessor unknown: untyped
|
133
|
+
SENSITIVE: []
|
134
|
+
|
135
|
+
class TimeBasedCollectionScheme < CollectionScheme
|
136
|
+
end
|
137
|
+
class ConditionBasedCollectionScheme < CollectionScheme
|
138
|
+
end
|
139
|
+
class Unknown < CollectionScheme
|
140
|
+
end
|
141
|
+
end
|
142
|
+
|
143
|
+
class ConditionBasedCollectionScheme
|
144
|
+
attr_accessor expression: ::String
|
145
|
+
attr_accessor minimum_trigger_interval_ms: ::Integer
|
146
|
+
attr_accessor trigger_mode: ("ALWAYS" | "RISING_EDGE")
|
147
|
+
attr_accessor condition_language_version: ::Integer
|
148
|
+
SENSITIVE: []
|
149
|
+
end
|
150
|
+
|
151
|
+
class ConflictException
|
152
|
+
attr_accessor message: ::String
|
153
|
+
attr_accessor resource: ::String
|
154
|
+
attr_accessor resource_type: ::String
|
155
|
+
SENSITIVE: []
|
156
|
+
end
|
157
|
+
|
158
|
+
class CreateCampaignRequest
|
159
|
+
attr_accessor name: ::String
|
160
|
+
attr_accessor description: ::String
|
161
|
+
attr_accessor signal_catalog_arn: ::String
|
162
|
+
attr_accessor target_arn: ::String
|
163
|
+
attr_accessor start_time: ::Time
|
164
|
+
attr_accessor expiry_time: ::Time
|
165
|
+
attr_accessor post_trigger_collection_duration: ::Integer
|
166
|
+
attr_accessor diagnostics_mode: ("OFF" | "SEND_ACTIVE_DTCS")
|
167
|
+
attr_accessor spooling_mode: ("OFF" | "TO_DISK")
|
168
|
+
attr_accessor compression: ("OFF" | "SNAPPY")
|
169
|
+
attr_accessor priority: ::Integer
|
170
|
+
attr_accessor signals_to_collect: ::Array[Types::SignalInformation]
|
171
|
+
attr_accessor collection_scheme: Types::CollectionScheme
|
172
|
+
attr_accessor data_extra_dimensions: ::Array[::String]
|
173
|
+
attr_accessor tags: ::Array[Types::Tag]
|
174
|
+
attr_accessor data_destination_configs: ::Array[Types::DataDestinationConfig]
|
175
|
+
SENSITIVE: []
|
176
|
+
end
|
177
|
+
|
178
|
+
class CreateCampaignResponse
|
179
|
+
attr_accessor name: ::String
|
180
|
+
attr_accessor arn: ::String
|
181
|
+
SENSITIVE: []
|
182
|
+
end
|
183
|
+
|
184
|
+
class CreateDecoderManifestRequest
|
185
|
+
attr_accessor name: ::String
|
186
|
+
attr_accessor description: ::String
|
187
|
+
attr_accessor model_manifest_arn: ::String
|
188
|
+
attr_accessor signal_decoders: ::Array[Types::SignalDecoder]
|
189
|
+
attr_accessor network_interfaces: ::Array[Types::NetworkInterface]
|
190
|
+
attr_accessor tags: ::Array[Types::Tag]
|
191
|
+
SENSITIVE: []
|
192
|
+
end
|
193
|
+
|
194
|
+
class CreateDecoderManifestResponse
|
195
|
+
attr_accessor name: ::String
|
196
|
+
attr_accessor arn: ::String
|
197
|
+
SENSITIVE: []
|
198
|
+
end
|
199
|
+
|
200
|
+
class CreateFleetRequest
|
201
|
+
attr_accessor fleet_id: ::String
|
202
|
+
attr_accessor description: ::String
|
203
|
+
attr_accessor signal_catalog_arn: ::String
|
204
|
+
attr_accessor tags: ::Array[Types::Tag]
|
205
|
+
SENSITIVE: []
|
206
|
+
end
|
207
|
+
|
208
|
+
class CreateFleetResponse
|
209
|
+
attr_accessor id: ::String
|
210
|
+
attr_accessor arn: ::String
|
211
|
+
SENSITIVE: []
|
212
|
+
end
|
213
|
+
|
214
|
+
class CreateModelManifestRequest
|
215
|
+
attr_accessor name: ::String
|
216
|
+
attr_accessor description: ::String
|
217
|
+
attr_accessor nodes: ::Array[::String]
|
218
|
+
attr_accessor signal_catalog_arn: ::String
|
219
|
+
attr_accessor tags: ::Array[Types::Tag]
|
220
|
+
SENSITIVE: []
|
221
|
+
end
|
222
|
+
|
223
|
+
class CreateModelManifestResponse
|
224
|
+
attr_accessor name: ::String
|
225
|
+
attr_accessor arn: ::String
|
226
|
+
SENSITIVE: []
|
227
|
+
end
|
228
|
+
|
229
|
+
class CreateSignalCatalogRequest
|
230
|
+
attr_accessor name: ::String
|
231
|
+
attr_accessor description: ::String
|
232
|
+
attr_accessor nodes: ::Array[Types::Node]
|
233
|
+
attr_accessor tags: ::Array[Types::Tag]
|
234
|
+
SENSITIVE: []
|
235
|
+
end
|
236
|
+
|
237
|
+
class CreateSignalCatalogResponse
|
238
|
+
attr_accessor name: ::String
|
239
|
+
attr_accessor arn: ::String
|
240
|
+
SENSITIVE: []
|
241
|
+
end
|
242
|
+
|
243
|
+
class CreateVehicleError
|
244
|
+
attr_accessor vehicle_name: ::String
|
245
|
+
attr_accessor code: ::String
|
246
|
+
attr_accessor message: ::String
|
247
|
+
SENSITIVE: []
|
248
|
+
end
|
249
|
+
|
250
|
+
class CreateVehicleRequest
|
251
|
+
attr_accessor vehicle_name: ::String
|
252
|
+
attr_accessor model_manifest_arn: ::String
|
253
|
+
attr_accessor decoder_manifest_arn: ::String
|
254
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
255
|
+
attr_accessor association_behavior: ("CreateIotThing" | "ValidateIotThingExists")
|
256
|
+
attr_accessor tags: ::Array[Types::Tag]
|
257
|
+
SENSITIVE: []
|
258
|
+
end
|
259
|
+
|
260
|
+
class CreateVehicleRequestItem
|
261
|
+
attr_accessor vehicle_name: ::String
|
262
|
+
attr_accessor model_manifest_arn: ::String
|
263
|
+
attr_accessor decoder_manifest_arn: ::String
|
264
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
265
|
+
attr_accessor association_behavior: ("CreateIotThing" | "ValidateIotThingExists")
|
266
|
+
attr_accessor tags: ::Array[Types::Tag]
|
267
|
+
SENSITIVE: []
|
268
|
+
end
|
269
|
+
|
270
|
+
class CreateVehicleResponse
|
271
|
+
attr_accessor vehicle_name: ::String
|
272
|
+
attr_accessor arn: ::String
|
273
|
+
attr_accessor thing_arn: ::String
|
274
|
+
SENSITIVE: []
|
275
|
+
end
|
276
|
+
|
277
|
+
class CreateVehicleResponseItem
|
278
|
+
attr_accessor vehicle_name: ::String
|
279
|
+
attr_accessor arn: ::String
|
280
|
+
attr_accessor thing_arn: ::String
|
281
|
+
SENSITIVE: []
|
282
|
+
end
|
283
|
+
|
284
|
+
class CustomProperty
|
285
|
+
attr_accessor fully_qualified_name: ::String
|
286
|
+
attr_accessor data_type: ("INT8" | "UINT8" | "INT16" | "UINT16" | "INT32" | "UINT32" | "INT64" | "UINT64" | "BOOLEAN" | "FLOAT" | "DOUBLE" | "STRING" | "UNIX_TIMESTAMP" | "INT8_ARRAY" | "UINT8_ARRAY" | "INT16_ARRAY" | "UINT16_ARRAY" | "INT32_ARRAY" | "UINT32_ARRAY" | "INT64_ARRAY" | "UINT64_ARRAY" | "BOOLEAN_ARRAY" | "FLOAT_ARRAY" | "DOUBLE_ARRAY" | "STRING_ARRAY" | "UNIX_TIMESTAMP_ARRAY" | "UNKNOWN" | "STRUCT" | "STRUCT_ARRAY")
|
287
|
+
attr_accessor data_encoding: ("BINARY" | "TYPED")
|
288
|
+
attr_accessor description: ::String
|
289
|
+
attr_accessor deprecation_message: ::String
|
290
|
+
attr_accessor comment: ::String
|
291
|
+
attr_accessor struct_fully_qualified_name: ::String
|
292
|
+
SENSITIVE: []
|
293
|
+
end
|
294
|
+
|
295
|
+
class CustomStruct
|
296
|
+
attr_accessor fully_qualified_name: ::String
|
297
|
+
attr_accessor description: ::String
|
298
|
+
attr_accessor deprecation_message: ::String
|
299
|
+
attr_accessor comment: ::String
|
300
|
+
SENSITIVE: []
|
301
|
+
end
|
302
|
+
|
303
|
+
class DataDestinationConfig
|
304
|
+
attr_accessor s3_config: Types::S3Config
|
305
|
+
attr_accessor timestream_config: Types::TimestreamConfig
|
306
|
+
attr_accessor unknown: untyped
|
307
|
+
SENSITIVE: []
|
308
|
+
|
309
|
+
class S3Config < DataDestinationConfig
|
310
|
+
end
|
311
|
+
class TimestreamConfig < DataDestinationConfig
|
312
|
+
end
|
313
|
+
class Unknown < DataDestinationConfig
|
314
|
+
end
|
315
|
+
end
|
316
|
+
|
317
|
+
class DecoderManifestSummary
|
318
|
+
attr_accessor name: ::String
|
319
|
+
attr_accessor arn: ::String
|
320
|
+
attr_accessor model_manifest_arn: ::String
|
321
|
+
attr_accessor description: ::String
|
322
|
+
attr_accessor status: ("ACTIVE" | "DRAFT" | "INVALID" | "VALIDATING")
|
323
|
+
attr_accessor creation_time: ::Time
|
324
|
+
attr_accessor last_modification_time: ::Time
|
325
|
+
attr_accessor message: ::String
|
326
|
+
SENSITIVE: []
|
327
|
+
end
|
328
|
+
|
329
|
+
class DecoderManifestValidationException
|
330
|
+
attr_accessor invalid_signals: ::Array[Types::InvalidSignalDecoder]
|
331
|
+
attr_accessor invalid_network_interfaces: ::Array[Types::InvalidNetworkInterface]
|
332
|
+
attr_accessor message: ::String
|
333
|
+
SENSITIVE: []
|
334
|
+
end
|
335
|
+
|
336
|
+
class DeleteCampaignRequest
|
337
|
+
attr_accessor name: ::String
|
338
|
+
SENSITIVE: []
|
339
|
+
end
|
340
|
+
|
341
|
+
class DeleteCampaignResponse
|
342
|
+
attr_accessor name: ::String
|
343
|
+
attr_accessor arn: ::String
|
344
|
+
SENSITIVE: []
|
345
|
+
end
|
346
|
+
|
347
|
+
class DeleteDecoderManifestRequest
|
348
|
+
attr_accessor name: ::String
|
349
|
+
SENSITIVE: []
|
350
|
+
end
|
351
|
+
|
352
|
+
class DeleteDecoderManifestResponse
|
353
|
+
attr_accessor name: ::String
|
354
|
+
attr_accessor arn: ::String
|
355
|
+
SENSITIVE: []
|
356
|
+
end
|
357
|
+
|
358
|
+
class DeleteFleetRequest
|
359
|
+
attr_accessor fleet_id: ::String
|
360
|
+
SENSITIVE: []
|
361
|
+
end
|
362
|
+
|
363
|
+
class DeleteFleetResponse
|
364
|
+
attr_accessor id: ::String
|
365
|
+
attr_accessor arn: ::String
|
366
|
+
SENSITIVE: []
|
367
|
+
end
|
368
|
+
|
369
|
+
class DeleteModelManifestRequest
|
370
|
+
attr_accessor name: ::String
|
371
|
+
SENSITIVE: []
|
372
|
+
end
|
373
|
+
|
374
|
+
class DeleteModelManifestResponse
|
375
|
+
attr_accessor name: ::String
|
376
|
+
attr_accessor arn: ::String
|
377
|
+
SENSITIVE: []
|
378
|
+
end
|
379
|
+
|
380
|
+
class DeleteSignalCatalogRequest
|
381
|
+
attr_accessor name: ::String
|
382
|
+
SENSITIVE: []
|
383
|
+
end
|
384
|
+
|
385
|
+
class DeleteSignalCatalogResponse
|
386
|
+
attr_accessor name: ::String
|
387
|
+
attr_accessor arn: ::String
|
388
|
+
SENSITIVE: []
|
389
|
+
end
|
390
|
+
|
391
|
+
class DeleteVehicleRequest
|
392
|
+
attr_accessor vehicle_name: ::String
|
393
|
+
SENSITIVE: []
|
394
|
+
end
|
395
|
+
|
396
|
+
class DeleteVehicleResponse
|
397
|
+
attr_accessor vehicle_name: ::String
|
398
|
+
attr_accessor arn: ::String
|
399
|
+
SENSITIVE: []
|
400
|
+
end
|
401
|
+
|
402
|
+
class DisassociateVehicleFleetRequest
|
403
|
+
attr_accessor vehicle_name: ::String
|
404
|
+
attr_accessor fleet_id: ::String
|
405
|
+
SENSITIVE: []
|
406
|
+
end
|
407
|
+
|
408
|
+
class DisassociateVehicleFleetResponse < Aws::EmptyStructure
|
409
|
+
end
|
410
|
+
|
411
|
+
class FleetSummary
|
412
|
+
attr_accessor id: ::String
|
413
|
+
attr_accessor arn: ::String
|
414
|
+
attr_accessor description: ::String
|
415
|
+
attr_accessor signal_catalog_arn: ::String
|
416
|
+
attr_accessor creation_time: ::Time
|
417
|
+
attr_accessor last_modification_time: ::Time
|
418
|
+
SENSITIVE: []
|
419
|
+
end
|
420
|
+
|
421
|
+
class FormattedVss
|
422
|
+
attr_accessor vss_json: ::String
|
423
|
+
attr_accessor unknown: untyped
|
424
|
+
SENSITIVE: []
|
425
|
+
|
426
|
+
class VssJson < FormattedVss
|
427
|
+
end
|
428
|
+
class Unknown < FormattedVss
|
429
|
+
end
|
430
|
+
end
|
431
|
+
|
432
|
+
class GetCampaignRequest
|
433
|
+
attr_accessor name: ::String
|
434
|
+
SENSITIVE: []
|
435
|
+
end
|
436
|
+
|
437
|
+
class GetCampaignResponse
|
438
|
+
attr_accessor name: ::String
|
439
|
+
attr_accessor arn: ::String
|
440
|
+
attr_accessor description: ::String
|
441
|
+
attr_accessor signal_catalog_arn: ::String
|
442
|
+
attr_accessor target_arn: ::String
|
443
|
+
attr_accessor status: ("CREATING" | "WAITING_FOR_APPROVAL" | "RUNNING" | "SUSPENDED")
|
444
|
+
attr_accessor start_time: ::Time
|
445
|
+
attr_accessor expiry_time: ::Time
|
446
|
+
attr_accessor post_trigger_collection_duration: ::Integer
|
447
|
+
attr_accessor diagnostics_mode: ("OFF" | "SEND_ACTIVE_DTCS")
|
448
|
+
attr_accessor spooling_mode: ("OFF" | "TO_DISK")
|
449
|
+
attr_accessor compression: ("OFF" | "SNAPPY")
|
450
|
+
attr_accessor priority: ::Integer
|
451
|
+
attr_accessor signals_to_collect: ::Array[Types::SignalInformation]
|
452
|
+
attr_accessor collection_scheme: Types::CollectionScheme
|
453
|
+
attr_accessor data_extra_dimensions: ::Array[::String]
|
454
|
+
attr_accessor creation_time: ::Time
|
455
|
+
attr_accessor last_modification_time: ::Time
|
456
|
+
attr_accessor data_destination_configs: ::Array[Types::DataDestinationConfig]
|
457
|
+
SENSITIVE: []
|
458
|
+
end
|
459
|
+
|
460
|
+
class GetDecoderManifestRequest
|
461
|
+
attr_accessor name: ::String
|
462
|
+
SENSITIVE: []
|
463
|
+
end
|
464
|
+
|
465
|
+
class GetDecoderManifestResponse
|
466
|
+
attr_accessor name: ::String
|
467
|
+
attr_accessor arn: ::String
|
468
|
+
attr_accessor description: ::String
|
469
|
+
attr_accessor model_manifest_arn: ::String
|
470
|
+
attr_accessor status: ("ACTIVE" | "DRAFT" | "INVALID" | "VALIDATING")
|
471
|
+
attr_accessor creation_time: ::Time
|
472
|
+
attr_accessor last_modification_time: ::Time
|
473
|
+
attr_accessor message: ::String
|
474
|
+
SENSITIVE: []
|
475
|
+
end
|
476
|
+
|
477
|
+
class GetEncryptionConfigurationRequest < Aws::EmptyStructure
|
478
|
+
end
|
479
|
+
|
480
|
+
class GetEncryptionConfigurationResponse
|
481
|
+
attr_accessor kms_key_id: ::String
|
482
|
+
attr_accessor encryption_status: ("PENDING" | "SUCCESS" | "FAILURE")
|
483
|
+
attr_accessor encryption_type: ("KMS_BASED_ENCRYPTION" | "FLEETWISE_DEFAULT_ENCRYPTION")
|
484
|
+
attr_accessor error_message: ::String
|
485
|
+
attr_accessor creation_time: ::Time
|
486
|
+
attr_accessor last_modification_time: ::Time
|
487
|
+
SENSITIVE: []
|
488
|
+
end
|
489
|
+
|
490
|
+
class GetFleetRequest
|
491
|
+
attr_accessor fleet_id: ::String
|
492
|
+
SENSITIVE: []
|
493
|
+
end
|
494
|
+
|
495
|
+
class GetFleetResponse
|
496
|
+
attr_accessor id: ::String
|
497
|
+
attr_accessor arn: ::String
|
498
|
+
attr_accessor description: ::String
|
499
|
+
attr_accessor signal_catalog_arn: ::String
|
500
|
+
attr_accessor creation_time: ::Time
|
501
|
+
attr_accessor last_modification_time: ::Time
|
502
|
+
SENSITIVE: []
|
503
|
+
end
|
504
|
+
|
505
|
+
class GetLoggingOptionsRequest < Aws::EmptyStructure
|
506
|
+
end
|
507
|
+
|
508
|
+
class GetLoggingOptionsResponse
|
509
|
+
attr_accessor cloud_watch_log_delivery: Types::CloudWatchLogDeliveryOptions
|
510
|
+
SENSITIVE: []
|
511
|
+
end
|
512
|
+
|
513
|
+
class GetModelManifestRequest
|
514
|
+
attr_accessor name: ::String
|
515
|
+
SENSITIVE: []
|
516
|
+
end
|
517
|
+
|
518
|
+
class GetModelManifestResponse
|
519
|
+
attr_accessor name: ::String
|
520
|
+
attr_accessor arn: ::String
|
521
|
+
attr_accessor description: ::String
|
522
|
+
attr_accessor signal_catalog_arn: ::String
|
523
|
+
attr_accessor status: ("ACTIVE" | "DRAFT" | "INVALID" | "VALIDATING")
|
524
|
+
attr_accessor creation_time: ::Time
|
525
|
+
attr_accessor last_modification_time: ::Time
|
526
|
+
SENSITIVE: []
|
527
|
+
end
|
528
|
+
|
529
|
+
class GetRegisterAccountStatusRequest < Aws::EmptyStructure
|
530
|
+
end
|
531
|
+
|
532
|
+
class GetRegisterAccountStatusResponse
|
533
|
+
attr_accessor customer_account_id: ::String
|
534
|
+
attr_accessor account_status: ("REGISTRATION_PENDING" | "REGISTRATION_SUCCESS" | "REGISTRATION_FAILURE")
|
535
|
+
attr_accessor timestream_registration_response: Types::TimestreamRegistrationResponse
|
536
|
+
attr_accessor iam_registration_response: Types::IamRegistrationResponse
|
537
|
+
attr_accessor creation_time: ::Time
|
538
|
+
attr_accessor last_modification_time: ::Time
|
539
|
+
SENSITIVE: []
|
540
|
+
end
|
541
|
+
|
542
|
+
class GetSignalCatalogRequest
|
543
|
+
attr_accessor name: ::String
|
544
|
+
SENSITIVE: []
|
545
|
+
end
|
546
|
+
|
547
|
+
class GetSignalCatalogResponse
|
548
|
+
attr_accessor name: ::String
|
549
|
+
attr_accessor arn: ::String
|
550
|
+
attr_accessor description: ::String
|
551
|
+
attr_accessor node_counts: Types::NodeCounts
|
552
|
+
attr_accessor creation_time: ::Time
|
553
|
+
attr_accessor last_modification_time: ::Time
|
554
|
+
SENSITIVE: []
|
555
|
+
end
|
556
|
+
|
557
|
+
class GetVehicleRequest
|
558
|
+
attr_accessor vehicle_name: ::String
|
559
|
+
SENSITIVE: []
|
560
|
+
end
|
561
|
+
|
562
|
+
class GetVehicleResponse
|
563
|
+
attr_accessor vehicle_name: ::String
|
564
|
+
attr_accessor arn: ::String
|
565
|
+
attr_accessor model_manifest_arn: ::String
|
566
|
+
attr_accessor decoder_manifest_arn: ::String
|
567
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
568
|
+
attr_accessor creation_time: ::Time
|
569
|
+
attr_accessor last_modification_time: ::Time
|
570
|
+
SENSITIVE: []
|
571
|
+
end
|
572
|
+
|
573
|
+
class GetVehicleStatusRequest
|
574
|
+
attr_accessor next_token: ::String
|
575
|
+
attr_accessor max_results: ::Integer
|
576
|
+
attr_accessor vehicle_name: ::String
|
577
|
+
SENSITIVE: []
|
578
|
+
end
|
579
|
+
|
580
|
+
class GetVehicleStatusResponse
|
581
|
+
attr_accessor campaigns: ::Array[Types::VehicleStatus]
|
582
|
+
attr_accessor next_token: ::String
|
583
|
+
SENSITIVE: []
|
584
|
+
end
|
585
|
+
|
586
|
+
class IamRegistrationResponse
|
587
|
+
attr_accessor role_arn: ::String
|
588
|
+
attr_accessor registration_status: ("REGISTRATION_PENDING" | "REGISTRATION_SUCCESS" | "REGISTRATION_FAILURE")
|
589
|
+
attr_accessor error_message: ::String
|
590
|
+
SENSITIVE: []
|
591
|
+
end
|
592
|
+
|
593
|
+
class IamResources
|
594
|
+
attr_accessor role_arn: ::String
|
595
|
+
SENSITIVE: []
|
596
|
+
end
|
597
|
+
|
598
|
+
class ImportDecoderManifestRequest
|
599
|
+
attr_accessor name: ::String
|
600
|
+
attr_accessor network_file_definitions: ::Array[Types::NetworkFileDefinition]
|
601
|
+
SENSITIVE: []
|
602
|
+
end
|
603
|
+
|
604
|
+
class ImportDecoderManifestResponse
|
605
|
+
attr_accessor name: ::String
|
606
|
+
attr_accessor arn: ::String
|
607
|
+
SENSITIVE: []
|
608
|
+
end
|
609
|
+
|
610
|
+
class ImportSignalCatalogRequest
|
611
|
+
attr_accessor name: ::String
|
612
|
+
attr_accessor description: ::String
|
613
|
+
attr_accessor vss: Types::FormattedVss
|
614
|
+
attr_accessor tags: ::Array[Types::Tag]
|
615
|
+
SENSITIVE: []
|
616
|
+
end
|
617
|
+
|
618
|
+
class ImportSignalCatalogResponse
|
619
|
+
attr_accessor name: ::String
|
620
|
+
attr_accessor arn: ::String
|
621
|
+
SENSITIVE: []
|
622
|
+
end
|
623
|
+
|
624
|
+
class InternalServerException
|
625
|
+
attr_accessor message: ::String
|
626
|
+
attr_accessor retry_after_seconds: ::Integer
|
627
|
+
SENSITIVE: []
|
628
|
+
end
|
629
|
+
|
630
|
+
class InvalidNetworkInterface
|
631
|
+
attr_accessor interface_id: ::String
|
632
|
+
attr_accessor reason: ("DUPLICATE_NETWORK_INTERFACE" | "CONFLICTING_NETWORK_INTERFACE" | "NETWORK_INTERFACE_TO_ADD_ALREADY_EXISTS" | "CAN_NETWORK_INTERFACE_INFO_IS_NULL" | "OBD_NETWORK_INTERFACE_INFO_IS_NULL" | "NETWORK_INTERFACE_TO_REMOVE_ASSOCIATED_WITH_SIGNALS" | "VEHICLE_MIDDLEWARE_NETWORK_INTERFACE_INFO_IS_NULL")
|
633
|
+
SENSITIVE: []
|
634
|
+
end
|
635
|
+
|
636
|
+
class InvalidNodeException
|
637
|
+
attr_accessor invalid_nodes: ::Array[Types::Node]
|
638
|
+
attr_accessor reason: ::String
|
639
|
+
attr_accessor message: ::String
|
640
|
+
SENSITIVE: []
|
641
|
+
end
|
642
|
+
|
643
|
+
class InvalidSignal
|
644
|
+
attr_accessor name: ::String
|
645
|
+
attr_accessor reason: ::String
|
646
|
+
SENSITIVE: []
|
647
|
+
end
|
648
|
+
|
649
|
+
class InvalidSignalDecoder
|
650
|
+
attr_accessor name: ::String
|
651
|
+
attr_accessor reason: ("DUPLICATE_SIGNAL" | "CONFLICTING_SIGNAL" | "SIGNAL_TO_ADD_ALREADY_EXISTS" | "SIGNAL_NOT_ASSOCIATED_WITH_NETWORK_INTERFACE" | "NETWORK_INTERFACE_TYPE_INCOMPATIBLE_WITH_SIGNAL_DECODER_TYPE" | "SIGNAL_NOT_IN_MODEL" | "CAN_SIGNAL_INFO_IS_NULL" | "OBD_SIGNAL_INFO_IS_NULL" | "NO_DECODER_INFO_FOR_SIGNAL_IN_MODEL" | "MESSAGE_SIGNAL_INFO_IS_NULL" | "SIGNAL_DECODER_TYPE_INCOMPATIBLE_WITH_MESSAGE_SIGNAL_TYPE" | "STRUCT_SIZE_MISMATCH" | "NO_SIGNAL_IN_CATALOG_FOR_DECODER_SIGNAL" | "SIGNAL_DECODER_INCOMPATIBLE_WITH_SIGNAL_CATALOG" | "EMPTY_MESSAGE_SIGNAL")
|
652
|
+
attr_accessor hint: ::String
|
653
|
+
SENSITIVE: []
|
654
|
+
end
|
655
|
+
|
656
|
+
class InvalidSignalsException
|
657
|
+
attr_accessor message: ::String
|
658
|
+
attr_accessor invalid_signals: ::Array[Types::InvalidSignal]
|
659
|
+
SENSITIVE: []
|
660
|
+
end
|
661
|
+
|
662
|
+
class LimitExceededException
|
663
|
+
attr_accessor message: ::String
|
664
|
+
attr_accessor resource_id: ::String
|
665
|
+
attr_accessor resource_type: ::String
|
666
|
+
SENSITIVE: []
|
667
|
+
end
|
668
|
+
|
669
|
+
class ListCampaignsRequest
|
670
|
+
attr_accessor next_token: ::String
|
671
|
+
attr_accessor max_results: ::Integer
|
672
|
+
attr_accessor status: ::String
|
673
|
+
SENSITIVE: []
|
674
|
+
end
|
675
|
+
|
676
|
+
class ListCampaignsResponse
|
677
|
+
attr_accessor campaign_summaries: ::Array[Types::CampaignSummary]
|
678
|
+
attr_accessor next_token: ::String
|
679
|
+
SENSITIVE: []
|
680
|
+
end
|
681
|
+
|
682
|
+
class ListDecoderManifestNetworkInterfacesRequest
|
683
|
+
attr_accessor name: ::String
|
684
|
+
attr_accessor next_token: ::String
|
685
|
+
attr_accessor max_results: ::Integer
|
686
|
+
SENSITIVE: []
|
687
|
+
end
|
688
|
+
|
689
|
+
class ListDecoderManifestNetworkInterfacesResponse
|
690
|
+
attr_accessor network_interfaces: ::Array[Types::NetworkInterface]
|
691
|
+
attr_accessor next_token: ::String
|
692
|
+
SENSITIVE: []
|
693
|
+
end
|
694
|
+
|
695
|
+
class ListDecoderManifestSignalsRequest
|
696
|
+
attr_accessor name: ::String
|
697
|
+
attr_accessor next_token: ::String
|
698
|
+
attr_accessor max_results: ::Integer
|
699
|
+
SENSITIVE: []
|
700
|
+
end
|
701
|
+
|
702
|
+
class ListDecoderManifestSignalsResponse
|
703
|
+
attr_accessor signal_decoders: ::Array[Types::SignalDecoder]
|
704
|
+
attr_accessor next_token: ::String
|
705
|
+
SENSITIVE: []
|
706
|
+
end
|
707
|
+
|
708
|
+
class ListDecoderManifestsRequest
|
709
|
+
attr_accessor model_manifest_arn: ::String
|
710
|
+
attr_accessor next_token: ::String
|
711
|
+
attr_accessor max_results: ::Integer
|
712
|
+
SENSITIVE: []
|
713
|
+
end
|
714
|
+
|
715
|
+
class ListDecoderManifestsResponse
|
716
|
+
attr_accessor summaries: ::Array[Types::DecoderManifestSummary]
|
717
|
+
attr_accessor next_token: ::String
|
718
|
+
SENSITIVE: []
|
719
|
+
end
|
720
|
+
|
721
|
+
class ListFleetsForVehicleRequest
|
722
|
+
attr_accessor vehicle_name: ::String
|
723
|
+
attr_accessor next_token: ::String
|
724
|
+
attr_accessor max_results: ::Integer
|
725
|
+
SENSITIVE: []
|
726
|
+
end
|
727
|
+
|
728
|
+
class ListFleetsForVehicleResponse
|
729
|
+
attr_accessor fleets: ::Array[::String]
|
730
|
+
attr_accessor next_token: ::String
|
731
|
+
SENSITIVE: []
|
732
|
+
end
|
733
|
+
|
734
|
+
class ListFleetsRequest
|
735
|
+
attr_accessor next_token: ::String
|
736
|
+
attr_accessor max_results: ::Integer
|
737
|
+
SENSITIVE: []
|
738
|
+
end
|
739
|
+
|
740
|
+
class ListFleetsResponse
|
741
|
+
attr_accessor fleet_summaries: ::Array[Types::FleetSummary]
|
742
|
+
attr_accessor next_token: ::String
|
743
|
+
SENSITIVE: []
|
744
|
+
end
|
745
|
+
|
746
|
+
class ListModelManifestNodesRequest
|
747
|
+
attr_accessor name: ::String
|
748
|
+
attr_accessor next_token: ::String
|
749
|
+
attr_accessor max_results: ::Integer
|
750
|
+
SENSITIVE: []
|
751
|
+
end
|
752
|
+
|
753
|
+
class ListModelManifestNodesResponse
|
754
|
+
attr_accessor nodes: ::Array[Types::Node]
|
755
|
+
attr_accessor next_token: ::String
|
756
|
+
SENSITIVE: []
|
757
|
+
end
|
758
|
+
|
759
|
+
class ListModelManifestsRequest
|
760
|
+
attr_accessor signal_catalog_arn: ::String
|
761
|
+
attr_accessor next_token: ::String
|
762
|
+
attr_accessor max_results: ::Integer
|
763
|
+
SENSITIVE: []
|
764
|
+
end
|
765
|
+
|
766
|
+
class ListModelManifestsResponse
|
767
|
+
attr_accessor summaries: ::Array[Types::ModelManifestSummary]
|
768
|
+
attr_accessor next_token: ::String
|
769
|
+
SENSITIVE: []
|
770
|
+
end
|
771
|
+
|
772
|
+
class ListSignalCatalogNodesRequest
|
773
|
+
attr_accessor name: ::String
|
774
|
+
attr_accessor next_token: ::String
|
775
|
+
attr_accessor max_results: ::Integer
|
776
|
+
attr_accessor signal_node_type: ("SENSOR" | "ACTUATOR" | "ATTRIBUTE" | "BRANCH" | "CUSTOM_STRUCT" | "CUSTOM_PROPERTY")
|
777
|
+
SENSITIVE: []
|
778
|
+
end
|
779
|
+
|
780
|
+
class ListSignalCatalogNodesResponse
|
781
|
+
attr_accessor nodes: ::Array[Types::Node]
|
782
|
+
attr_accessor next_token: ::String
|
783
|
+
SENSITIVE: []
|
784
|
+
end
|
785
|
+
|
786
|
+
class ListSignalCatalogsRequest
|
787
|
+
attr_accessor next_token: ::String
|
788
|
+
attr_accessor max_results: ::Integer
|
789
|
+
SENSITIVE: []
|
790
|
+
end
|
791
|
+
|
792
|
+
class ListSignalCatalogsResponse
|
793
|
+
attr_accessor summaries: ::Array[Types::SignalCatalogSummary]
|
794
|
+
attr_accessor next_token: ::String
|
795
|
+
SENSITIVE: []
|
796
|
+
end
|
797
|
+
|
798
|
+
class ListTagsForResourceRequest
|
799
|
+
attr_accessor resource_arn: ::String
|
800
|
+
SENSITIVE: []
|
801
|
+
end
|
802
|
+
|
803
|
+
class ListTagsForResourceResponse
|
804
|
+
attr_accessor tags: ::Array[Types::Tag]
|
805
|
+
SENSITIVE: []
|
806
|
+
end
|
807
|
+
|
808
|
+
class ListVehiclesInFleetRequest
|
809
|
+
attr_accessor fleet_id: ::String
|
810
|
+
attr_accessor next_token: ::String
|
811
|
+
attr_accessor max_results: ::Integer
|
812
|
+
SENSITIVE: []
|
813
|
+
end
|
814
|
+
|
815
|
+
class ListVehiclesInFleetResponse
|
816
|
+
attr_accessor vehicles: ::Array[::String]
|
817
|
+
attr_accessor next_token: ::String
|
818
|
+
SENSITIVE: []
|
819
|
+
end
|
820
|
+
|
821
|
+
class ListVehiclesRequest
|
822
|
+
attr_accessor model_manifest_arn: ::String
|
823
|
+
attr_accessor next_token: ::String
|
824
|
+
attr_accessor max_results: ::Integer
|
825
|
+
SENSITIVE: []
|
826
|
+
end
|
827
|
+
|
828
|
+
class ListVehiclesResponse
|
829
|
+
attr_accessor vehicle_summaries: ::Array[Types::VehicleSummary]
|
830
|
+
attr_accessor next_token: ::String
|
831
|
+
SENSITIVE: []
|
832
|
+
end
|
833
|
+
|
834
|
+
class MessageSignal
|
835
|
+
attr_accessor topic_name: ::String
|
836
|
+
attr_accessor structured_message: Types::StructuredMessage
|
837
|
+
SENSITIVE: []
|
838
|
+
end
|
839
|
+
|
840
|
+
class ModelManifestSummary
|
841
|
+
attr_accessor name: ::String
|
842
|
+
attr_accessor arn: ::String
|
843
|
+
attr_accessor signal_catalog_arn: ::String
|
844
|
+
attr_accessor description: ::String
|
845
|
+
attr_accessor status: ("ACTIVE" | "DRAFT" | "INVALID" | "VALIDATING")
|
846
|
+
attr_accessor creation_time: ::Time
|
847
|
+
attr_accessor last_modification_time: ::Time
|
848
|
+
SENSITIVE: []
|
849
|
+
end
|
850
|
+
|
851
|
+
class NetworkFileDefinition
|
852
|
+
attr_accessor can_dbc: Types::CanDbcDefinition
|
853
|
+
attr_accessor unknown: untyped
|
854
|
+
SENSITIVE: []
|
855
|
+
|
856
|
+
class CanDbc < NetworkFileDefinition
|
857
|
+
end
|
858
|
+
class Unknown < NetworkFileDefinition
|
859
|
+
end
|
860
|
+
end
|
861
|
+
|
862
|
+
class NetworkInterface
|
863
|
+
attr_accessor interface_id: ::String
|
864
|
+
attr_accessor type: ("CAN_INTERFACE" | "OBD_INTERFACE" | "VEHICLE_MIDDLEWARE")
|
865
|
+
attr_accessor can_interface: Types::CanInterface
|
866
|
+
attr_accessor obd_interface: Types::ObdInterface
|
867
|
+
attr_accessor vehicle_middleware: Types::VehicleMiddleware
|
868
|
+
SENSITIVE: []
|
869
|
+
end
|
870
|
+
|
871
|
+
class Node
|
872
|
+
attr_accessor branch: Types::Branch
|
873
|
+
attr_accessor sensor: Types::Sensor
|
874
|
+
attr_accessor actuator: Types::Actuator
|
875
|
+
attr_accessor attribute: Types::Attribute
|
876
|
+
attr_accessor struct: Types::CustomStruct
|
877
|
+
attr_accessor property: Types::CustomProperty
|
878
|
+
attr_accessor unknown: untyped
|
879
|
+
SENSITIVE: []
|
880
|
+
|
881
|
+
class Branch < Node
|
882
|
+
end
|
883
|
+
class Sensor < Node
|
884
|
+
end
|
885
|
+
class Actuator < Node
|
886
|
+
end
|
887
|
+
class Attribute < Node
|
888
|
+
end
|
889
|
+
class Struct < Node
|
890
|
+
end
|
891
|
+
class Property < Node
|
892
|
+
end
|
893
|
+
class Unknown < Node
|
894
|
+
end
|
895
|
+
end
|
896
|
+
|
897
|
+
class NodeCounts
|
898
|
+
attr_accessor total_nodes: ::Integer
|
899
|
+
attr_accessor total_branches: ::Integer
|
900
|
+
attr_accessor total_sensors: ::Integer
|
901
|
+
attr_accessor total_attributes: ::Integer
|
902
|
+
attr_accessor total_actuators: ::Integer
|
903
|
+
attr_accessor total_structs: ::Integer
|
904
|
+
attr_accessor total_properties: ::Integer
|
905
|
+
SENSITIVE: []
|
906
|
+
end
|
907
|
+
|
908
|
+
class ObdInterface
|
909
|
+
attr_accessor name: ::String
|
910
|
+
attr_accessor request_message_id: ::Integer
|
911
|
+
attr_accessor obd_standard: ::String
|
912
|
+
attr_accessor pid_request_interval_seconds: ::Integer
|
913
|
+
attr_accessor dtc_request_interval_seconds: ::Integer
|
914
|
+
attr_accessor use_extended_ids: bool
|
915
|
+
attr_accessor has_transmission_ecu: bool
|
916
|
+
SENSITIVE: []
|
917
|
+
end
|
918
|
+
|
919
|
+
class ObdSignal
|
920
|
+
attr_accessor pid_response_length: ::Integer
|
921
|
+
attr_accessor service_mode: ::Integer
|
922
|
+
attr_accessor pid: ::Integer
|
923
|
+
attr_accessor scaling: ::Float
|
924
|
+
attr_accessor offset: ::Float
|
925
|
+
attr_accessor start_byte: ::Integer
|
926
|
+
attr_accessor byte_length: ::Integer
|
927
|
+
attr_accessor bit_right_shift: ::Integer
|
928
|
+
attr_accessor bit_mask_length: ::Integer
|
929
|
+
SENSITIVE: []
|
930
|
+
end
|
931
|
+
|
932
|
+
class PrimitiveMessageDefinition
|
933
|
+
attr_accessor ros2_primitive_message_definition: Types::ROS2PrimitiveMessageDefinition
|
934
|
+
attr_accessor unknown: untyped
|
935
|
+
SENSITIVE: []
|
936
|
+
|
937
|
+
class Ros2PrimitiveMessageDefinition < PrimitiveMessageDefinition
|
938
|
+
end
|
939
|
+
class Unknown < PrimitiveMessageDefinition
|
940
|
+
end
|
941
|
+
end
|
942
|
+
|
943
|
+
class PutEncryptionConfigurationRequest
|
944
|
+
attr_accessor kms_key_id: ::String
|
945
|
+
attr_accessor encryption_type: ("KMS_BASED_ENCRYPTION" | "FLEETWISE_DEFAULT_ENCRYPTION")
|
946
|
+
SENSITIVE: []
|
947
|
+
end
|
948
|
+
|
949
|
+
class PutEncryptionConfigurationResponse
|
950
|
+
attr_accessor kms_key_id: ::String
|
951
|
+
attr_accessor encryption_status: ("PENDING" | "SUCCESS" | "FAILURE")
|
952
|
+
attr_accessor encryption_type: ("KMS_BASED_ENCRYPTION" | "FLEETWISE_DEFAULT_ENCRYPTION")
|
953
|
+
SENSITIVE: []
|
954
|
+
end
|
955
|
+
|
956
|
+
class PutLoggingOptionsRequest
|
957
|
+
attr_accessor cloud_watch_log_delivery: Types::CloudWatchLogDeliveryOptions
|
958
|
+
SENSITIVE: []
|
959
|
+
end
|
960
|
+
|
961
|
+
class PutLoggingOptionsResponse < Aws::EmptyStructure
|
962
|
+
end
|
963
|
+
|
964
|
+
class ROS2PrimitiveMessageDefinition
|
965
|
+
attr_accessor primitive_type: ("BOOL" | "BYTE" | "CHAR" | "FLOAT32" | "FLOAT64" | "INT8" | "UINT8" | "INT16" | "UINT16" | "INT32" | "UINT32" | "INT64" | "UINT64" | "STRING" | "WSTRING")
|
966
|
+
attr_accessor offset: ::Float
|
967
|
+
attr_accessor scaling: ::Float
|
968
|
+
attr_accessor upper_bound: ::Integer
|
969
|
+
SENSITIVE: []
|
970
|
+
end
|
971
|
+
|
972
|
+
class RegisterAccountRequest
|
973
|
+
attr_accessor timestream_resources: Types::TimestreamResources
|
974
|
+
attr_accessor iam_resources: Types::IamResources
|
975
|
+
SENSITIVE: []
|
976
|
+
end
|
977
|
+
|
978
|
+
class RegisterAccountResponse
|
979
|
+
attr_accessor register_account_status: ("REGISTRATION_PENDING" | "REGISTRATION_SUCCESS" | "REGISTRATION_FAILURE")
|
980
|
+
attr_accessor timestream_resources: Types::TimestreamResources
|
981
|
+
attr_accessor iam_resources: Types::IamResources
|
982
|
+
attr_accessor creation_time: ::Time
|
983
|
+
attr_accessor last_modification_time: ::Time
|
984
|
+
SENSITIVE: []
|
985
|
+
end
|
986
|
+
|
987
|
+
class ResourceNotFoundException
|
988
|
+
attr_accessor message: ::String
|
989
|
+
attr_accessor resource_id: ::String
|
990
|
+
attr_accessor resource_type: ::String
|
991
|
+
SENSITIVE: []
|
992
|
+
end
|
993
|
+
|
994
|
+
class S3Config
|
995
|
+
attr_accessor bucket_arn: ::String
|
996
|
+
attr_accessor data_format: ("JSON" | "PARQUET")
|
997
|
+
attr_accessor storage_compression_format: ("NONE" | "GZIP")
|
998
|
+
attr_accessor prefix: ::String
|
999
|
+
SENSITIVE: []
|
1000
|
+
end
|
1001
|
+
|
1002
|
+
class Sensor
|
1003
|
+
attr_accessor fully_qualified_name: ::String
|
1004
|
+
attr_accessor data_type: ("INT8" | "UINT8" | "INT16" | "UINT16" | "INT32" | "UINT32" | "INT64" | "UINT64" | "BOOLEAN" | "FLOAT" | "DOUBLE" | "STRING" | "UNIX_TIMESTAMP" | "INT8_ARRAY" | "UINT8_ARRAY" | "INT16_ARRAY" | "UINT16_ARRAY" | "INT32_ARRAY" | "UINT32_ARRAY" | "INT64_ARRAY" | "UINT64_ARRAY" | "BOOLEAN_ARRAY" | "FLOAT_ARRAY" | "DOUBLE_ARRAY" | "STRING_ARRAY" | "UNIX_TIMESTAMP_ARRAY" | "UNKNOWN" | "STRUCT" | "STRUCT_ARRAY")
|
1005
|
+
attr_accessor description: ::String
|
1006
|
+
attr_accessor unit: ::String
|
1007
|
+
attr_accessor allowed_values: ::Array[::String]
|
1008
|
+
attr_accessor min: ::Float
|
1009
|
+
attr_accessor max: ::Float
|
1010
|
+
attr_accessor deprecation_message: ::String
|
1011
|
+
attr_accessor comment: ::String
|
1012
|
+
attr_accessor struct_fully_qualified_name: ::String
|
1013
|
+
SENSITIVE: []
|
1014
|
+
end
|
1015
|
+
|
1016
|
+
class SignalCatalogSummary
|
1017
|
+
attr_accessor name: ::String
|
1018
|
+
attr_accessor arn: ::String
|
1019
|
+
attr_accessor creation_time: ::Time
|
1020
|
+
attr_accessor last_modification_time: ::Time
|
1021
|
+
SENSITIVE: []
|
1022
|
+
end
|
1023
|
+
|
1024
|
+
class SignalDecoder
|
1025
|
+
attr_accessor fully_qualified_name: ::String
|
1026
|
+
attr_accessor type: ("CAN_SIGNAL" | "OBD_SIGNAL" | "MESSAGE_SIGNAL")
|
1027
|
+
attr_accessor interface_id: ::String
|
1028
|
+
attr_accessor can_signal: Types::CanSignal
|
1029
|
+
attr_accessor obd_signal: Types::ObdSignal
|
1030
|
+
attr_accessor message_signal: Types::MessageSignal
|
1031
|
+
SENSITIVE: []
|
1032
|
+
end
|
1033
|
+
|
1034
|
+
class SignalInformation
|
1035
|
+
attr_accessor name: ::String
|
1036
|
+
attr_accessor max_sample_count: ::Integer
|
1037
|
+
attr_accessor minimum_sampling_interval_ms: ::Integer
|
1038
|
+
SENSITIVE: []
|
1039
|
+
end
|
1040
|
+
|
1041
|
+
class StructuredMessage
|
1042
|
+
attr_accessor primitive_message_definition: Types::PrimitiveMessageDefinition
|
1043
|
+
attr_accessor structured_message_list_definition: Types::StructuredMessageListDefinition
|
1044
|
+
attr_accessor structured_message_definition: ::Array[Types::StructuredMessageFieldNameAndDataTypePair]
|
1045
|
+
attr_accessor unknown: untyped
|
1046
|
+
SENSITIVE: []
|
1047
|
+
|
1048
|
+
class PrimitiveMessageDefinition < StructuredMessage
|
1049
|
+
end
|
1050
|
+
class StructuredMessageListDefinition < StructuredMessage
|
1051
|
+
end
|
1052
|
+
class StructuredMessageDefinition < StructuredMessage
|
1053
|
+
end
|
1054
|
+
class Unknown < StructuredMessage
|
1055
|
+
end
|
1056
|
+
end
|
1057
|
+
|
1058
|
+
class StructuredMessageFieldNameAndDataTypePair
|
1059
|
+
attr_accessor field_name: ::String
|
1060
|
+
attr_accessor data_type: Types::StructuredMessage
|
1061
|
+
SENSITIVE: []
|
1062
|
+
end
|
1063
|
+
|
1064
|
+
class StructuredMessageListDefinition
|
1065
|
+
attr_accessor name: ::String
|
1066
|
+
attr_accessor member_type: Types::StructuredMessage
|
1067
|
+
attr_accessor list_type: ("FIXED_CAPACITY" | "DYNAMIC_UNBOUNDED_CAPACITY" | "DYNAMIC_BOUNDED_CAPACITY")
|
1068
|
+
attr_accessor capacity: ::Integer
|
1069
|
+
SENSITIVE: []
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
class Tag
|
1073
|
+
attr_accessor key: ::String
|
1074
|
+
attr_accessor value: ::String
|
1075
|
+
SENSITIVE: []
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
class TagResourceRequest
|
1079
|
+
attr_accessor resource_arn: ::String
|
1080
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1081
|
+
SENSITIVE: []
|
1082
|
+
end
|
1083
|
+
|
1084
|
+
class TagResourceResponse < Aws::EmptyStructure
|
1085
|
+
end
|
1086
|
+
|
1087
|
+
class ThrottlingException
|
1088
|
+
attr_accessor message: ::String
|
1089
|
+
attr_accessor quota_code: ::String
|
1090
|
+
attr_accessor service_code: ::String
|
1091
|
+
attr_accessor retry_after_seconds: ::Integer
|
1092
|
+
SENSITIVE: []
|
1093
|
+
end
|
1094
|
+
|
1095
|
+
class TimeBasedCollectionScheme
|
1096
|
+
attr_accessor period_ms: ::Integer
|
1097
|
+
SENSITIVE: []
|
1098
|
+
end
|
1099
|
+
|
1100
|
+
class TimestreamConfig
|
1101
|
+
attr_accessor timestream_table_arn: ::String
|
1102
|
+
attr_accessor execution_role_arn: ::String
|
1103
|
+
SENSITIVE: []
|
1104
|
+
end
|
1105
|
+
|
1106
|
+
class TimestreamRegistrationResponse
|
1107
|
+
attr_accessor timestream_database_name: ::String
|
1108
|
+
attr_accessor timestream_table_name: ::String
|
1109
|
+
attr_accessor timestream_database_arn: ::String
|
1110
|
+
attr_accessor timestream_table_arn: ::String
|
1111
|
+
attr_accessor registration_status: ("REGISTRATION_PENDING" | "REGISTRATION_SUCCESS" | "REGISTRATION_FAILURE")
|
1112
|
+
attr_accessor error_message: ::String
|
1113
|
+
SENSITIVE: []
|
1114
|
+
end
|
1115
|
+
|
1116
|
+
class TimestreamResources
|
1117
|
+
attr_accessor timestream_database_name: ::String
|
1118
|
+
attr_accessor timestream_table_name: ::String
|
1119
|
+
SENSITIVE: []
|
1120
|
+
end
|
1121
|
+
|
1122
|
+
class UntagResourceRequest
|
1123
|
+
attr_accessor resource_arn: ::String
|
1124
|
+
attr_accessor tag_keys: ::Array[::String]
|
1125
|
+
SENSITIVE: []
|
1126
|
+
end
|
1127
|
+
|
1128
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
1129
|
+
end
|
1130
|
+
|
1131
|
+
class UpdateCampaignRequest
|
1132
|
+
attr_accessor name: ::String
|
1133
|
+
attr_accessor description: ::String
|
1134
|
+
attr_accessor data_extra_dimensions: ::Array[::String]
|
1135
|
+
attr_accessor action: ("APPROVE" | "SUSPEND" | "RESUME" | "UPDATE")
|
1136
|
+
SENSITIVE: []
|
1137
|
+
end
|
1138
|
+
|
1139
|
+
class UpdateCampaignResponse
|
1140
|
+
attr_accessor arn: ::String
|
1141
|
+
attr_accessor name: ::String
|
1142
|
+
attr_accessor status: ("CREATING" | "WAITING_FOR_APPROVAL" | "RUNNING" | "SUSPENDED")
|
1143
|
+
SENSITIVE: []
|
1144
|
+
end
|
1145
|
+
|
1146
|
+
class UpdateDecoderManifestRequest
|
1147
|
+
attr_accessor name: ::String
|
1148
|
+
attr_accessor description: ::String
|
1149
|
+
attr_accessor signal_decoders_to_add: ::Array[Types::SignalDecoder]
|
1150
|
+
attr_accessor signal_decoders_to_update: ::Array[Types::SignalDecoder]
|
1151
|
+
attr_accessor signal_decoders_to_remove: ::Array[::String]
|
1152
|
+
attr_accessor network_interfaces_to_add: ::Array[Types::NetworkInterface]
|
1153
|
+
attr_accessor network_interfaces_to_update: ::Array[Types::NetworkInterface]
|
1154
|
+
attr_accessor network_interfaces_to_remove: ::Array[::String]
|
1155
|
+
attr_accessor status: ("ACTIVE" | "DRAFT" | "INVALID" | "VALIDATING")
|
1156
|
+
SENSITIVE: []
|
1157
|
+
end
|
1158
|
+
|
1159
|
+
class UpdateDecoderManifestResponse
|
1160
|
+
attr_accessor name: ::String
|
1161
|
+
attr_accessor arn: ::String
|
1162
|
+
SENSITIVE: []
|
1163
|
+
end
|
1164
|
+
|
1165
|
+
class UpdateFleetRequest
|
1166
|
+
attr_accessor fleet_id: ::String
|
1167
|
+
attr_accessor description: ::String
|
1168
|
+
SENSITIVE: []
|
1169
|
+
end
|
1170
|
+
|
1171
|
+
class UpdateFleetResponse
|
1172
|
+
attr_accessor id: ::String
|
1173
|
+
attr_accessor arn: ::String
|
1174
|
+
SENSITIVE: []
|
1175
|
+
end
|
1176
|
+
|
1177
|
+
class UpdateModelManifestRequest
|
1178
|
+
attr_accessor name: ::String
|
1179
|
+
attr_accessor description: ::String
|
1180
|
+
attr_accessor nodes_to_add: ::Array[::String]
|
1181
|
+
attr_accessor nodes_to_remove: ::Array[::String]
|
1182
|
+
attr_accessor status: ("ACTIVE" | "DRAFT" | "INVALID" | "VALIDATING")
|
1183
|
+
SENSITIVE: []
|
1184
|
+
end
|
1185
|
+
|
1186
|
+
class UpdateModelManifestResponse
|
1187
|
+
attr_accessor name: ::String
|
1188
|
+
attr_accessor arn: ::String
|
1189
|
+
SENSITIVE: []
|
1190
|
+
end
|
1191
|
+
|
1192
|
+
class UpdateSignalCatalogRequest
|
1193
|
+
attr_accessor name: ::String
|
1194
|
+
attr_accessor description: ::String
|
1195
|
+
attr_accessor nodes_to_add: ::Array[Types::Node]
|
1196
|
+
attr_accessor nodes_to_update: ::Array[Types::Node]
|
1197
|
+
attr_accessor nodes_to_remove: ::Array[::String]
|
1198
|
+
SENSITIVE: []
|
1199
|
+
end
|
1200
|
+
|
1201
|
+
class UpdateSignalCatalogResponse
|
1202
|
+
attr_accessor name: ::String
|
1203
|
+
attr_accessor arn: ::String
|
1204
|
+
SENSITIVE: []
|
1205
|
+
end
|
1206
|
+
|
1207
|
+
class UpdateVehicleError
|
1208
|
+
attr_accessor vehicle_name: ::String
|
1209
|
+
attr_accessor code: ::Integer
|
1210
|
+
attr_accessor message: ::String
|
1211
|
+
SENSITIVE: []
|
1212
|
+
end
|
1213
|
+
|
1214
|
+
class UpdateVehicleRequest
|
1215
|
+
attr_accessor vehicle_name: ::String
|
1216
|
+
attr_accessor model_manifest_arn: ::String
|
1217
|
+
attr_accessor decoder_manifest_arn: ::String
|
1218
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
1219
|
+
attr_accessor attribute_update_mode: ("Overwrite" | "Merge")
|
1220
|
+
SENSITIVE: []
|
1221
|
+
end
|
1222
|
+
|
1223
|
+
class UpdateVehicleRequestItem
|
1224
|
+
attr_accessor vehicle_name: ::String
|
1225
|
+
attr_accessor model_manifest_arn: ::String
|
1226
|
+
attr_accessor decoder_manifest_arn: ::String
|
1227
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
1228
|
+
attr_accessor attribute_update_mode: ("Overwrite" | "Merge")
|
1229
|
+
SENSITIVE: []
|
1230
|
+
end
|
1231
|
+
|
1232
|
+
class UpdateVehicleResponse
|
1233
|
+
attr_accessor vehicle_name: ::String
|
1234
|
+
attr_accessor arn: ::String
|
1235
|
+
SENSITIVE: []
|
1236
|
+
end
|
1237
|
+
|
1238
|
+
class UpdateVehicleResponseItem
|
1239
|
+
attr_accessor vehicle_name: ::String
|
1240
|
+
attr_accessor arn: ::String
|
1241
|
+
SENSITIVE: []
|
1242
|
+
end
|
1243
|
+
|
1244
|
+
class ValidationException
|
1245
|
+
attr_accessor message: ::String
|
1246
|
+
attr_accessor reason: ("unknownOperation" | "cannotParse" | "fieldValidationFailed" | "other")
|
1247
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
1248
|
+
SENSITIVE: []
|
1249
|
+
end
|
1250
|
+
|
1251
|
+
class ValidationExceptionField
|
1252
|
+
attr_accessor name: ::String
|
1253
|
+
attr_accessor message: ::String
|
1254
|
+
SENSITIVE: []
|
1255
|
+
end
|
1256
|
+
|
1257
|
+
class VehicleMiddleware
|
1258
|
+
attr_accessor name: ::String
|
1259
|
+
attr_accessor protocol_name: ("ROS_2")
|
1260
|
+
SENSITIVE: []
|
1261
|
+
end
|
1262
|
+
|
1263
|
+
class VehicleStatus
|
1264
|
+
attr_accessor campaign_name: ::String
|
1265
|
+
attr_accessor vehicle_name: ::String
|
1266
|
+
attr_accessor status: ("CREATED" | "READY" | "HEALTHY" | "SUSPENDED" | "DELETING")
|
1267
|
+
SENSITIVE: []
|
1268
|
+
end
|
1269
|
+
|
1270
|
+
class VehicleSummary
|
1271
|
+
attr_accessor vehicle_name: ::String
|
1272
|
+
attr_accessor arn: ::String
|
1273
|
+
attr_accessor model_manifest_arn: ::String
|
1274
|
+
attr_accessor decoder_manifest_arn: ::String
|
1275
|
+
attr_accessor creation_time: ::Time
|
1276
|
+
attr_accessor last_modification_time: ::Time
|
1277
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
1278
|
+
SENSITIVE: []
|
1279
|
+
end
|
1280
|
+
end
|
1281
|
+
end
|