aws-sdk-iotfleetwise 1.37.0 → 1.38.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.
data/sig/types.rbs CHANGED
@@ -148,6 +148,12 @@ module Aws::IoTFleetWise
148
148
  SENSITIVE: [:expression]
149
149
  end
150
150
 
151
+ class ConditionBasedSignalFetchConfig
152
+ attr_accessor condition_expression: ::String
153
+ attr_accessor trigger_mode: ("ALWAYS" | "RISING_EDGE")
154
+ SENSITIVE: [:condition_expression]
155
+ end
156
+
151
157
  class ConflictException
152
158
  attr_accessor message: ::String
153
159
  attr_accessor resource: ::String
@@ -172,6 +178,8 @@ module Aws::IoTFleetWise
172
178
  attr_accessor data_extra_dimensions: ::Array[::String]
173
179
  attr_accessor tags: ::Array[Types::Tag]
174
180
  attr_accessor data_destination_configs: ::Array[Types::DataDestinationConfig]
181
+ attr_accessor data_partitions: ::Array[Types::DataPartition]
182
+ attr_accessor signals_to_fetch: ::Array[Types::SignalFetchInformation]
175
183
  SENSITIVE: [:signals_to_collect, :data_extra_dimensions]
176
184
  end
177
185
 
@@ -187,6 +195,7 @@ module Aws::IoTFleetWise
187
195
  attr_accessor model_manifest_arn: ::String
188
196
  attr_accessor signal_decoders: ::Array[Types::SignalDecoder]
189
197
  attr_accessor network_interfaces: ::Array[Types::NetworkInterface]
198
+ attr_accessor default_for_unmapped_signals: ("CUSTOM_DECODING")
190
199
  attr_accessor tags: ::Array[Types::Tag]
191
200
  SENSITIVE: []
192
201
  end
@@ -240,6 +249,24 @@ module Aws::IoTFleetWise
240
249
  SENSITIVE: []
241
250
  end
242
251
 
252
+ class CreateStateTemplateRequest
253
+ attr_accessor name: ::String
254
+ attr_accessor description: ::String
255
+ attr_accessor signal_catalog_arn: ::String
256
+ attr_accessor state_template_properties: ::Array[::String]
257
+ attr_accessor data_extra_dimensions: ::Array[::String]
258
+ attr_accessor metadata_extra_dimensions: ::Array[::String]
259
+ attr_accessor tags: ::Array[Types::Tag]
260
+ SENSITIVE: []
261
+ end
262
+
263
+ class CreateStateTemplateResponse
264
+ attr_accessor name: ::String
265
+ attr_accessor arn: ::String
266
+ attr_accessor id: ::String
267
+ SENSITIVE: []
268
+ end
269
+
243
270
  class CreateVehicleError
244
271
  attr_accessor vehicle_name: ::String
245
272
  attr_accessor code: ::String
@@ -254,6 +281,7 @@ module Aws::IoTFleetWise
254
281
  attr_accessor attributes: ::Hash[::String, ::String]
255
282
  attr_accessor association_behavior: ("CreateIotThing" | "ValidateIotThingExists")
256
283
  attr_accessor tags: ::Array[Types::Tag]
284
+ attr_accessor state_templates: ::Array[Types::StateTemplateAssociation]
257
285
  SENSITIVE: []
258
286
  end
259
287
 
@@ -264,6 +292,7 @@ module Aws::IoTFleetWise
264
292
  attr_accessor attributes: ::Hash[::String, ::String]
265
293
  attr_accessor association_behavior: ("CreateIotThing" | "ValidateIotThingExists")
266
294
  attr_accessor tags: ::Array[Types::Tag]
295
+ attr_accessor state_templates: ::Array[Types::StateTemplateAssociation]
267
296
  SENSITIVE: []
268
297
  end
269
298
 
@@ -281,6 +310,16 @@ module Aws::IoTFleetWise
281
310
  SENSITIVE: []
282
311
  end
283
312
 
313
+ class CustomDecodingInterface
314
+ attr_accessor name: ::String
315
+ SENSITIVE: []
316
+ end
317
+
318
+ class CustomDecodingSignal
319
+ attr_accessor id: ::String
320
+ SENSITIVE: []
321
+ end
322
+
284
323
  class CustomProperty
285
324
  attr_accessor fully_qualified_name: ::String
286
325
  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")
@@ -303,6 +342,7 @@ module Aws::IoTFleetWise
303
342
  class DataDestinationConfig
304
343
  attr_accessor s3_config: Types::S3Config
305
344
  attr_accessor timestream_config: Types::TimestreamConfig
345
+ attr_accessor mqtt_topic_config: Types::MqttTopicConfig
306
346
  attr_accessor unknown: untyped
307
347
  SENSITIVE: []
308
348
 
@@ -310,10 +350,32 @@ module Aws::IoTFleetWise
310
350
  end
311
351
  class TimestreamConfig < DataDestinationConfig
312
352
  end
353
+ class MqttTopicConfig < DataDestinationConfig
354
+ end
313
355
  class Unknown < DataDestinationConfig
314
356
  end
315
357
  end
316
358
 
359
+ class DataPartition
360
+ attr_accessor id: ::String
361
+ attr_accessor storage_options: Types::DataPartitionStorageOptions
362
+ attr_accessor upload_options: Types::DataPartitionUploadOptions
363
+ SENSITIVE: []
364
+ end
365
+
366
+ class DataPartitionStorageOptions
367
+ attr_accessor maximum_size: Types::StorageMaximumSize
368
+ attr_accessor storage_location: ::String
369
+ attr_accessor minimum_time_to_live: Types::StorageMinimumTimeToLive
370
+ SENSITIVE: [:storage_location]
371
+ end
372
+
373
+ class DataPartitionUploadOptions
374
+ attr_accessor expression: ::String
375
+ attr_accessor condition_language_version: ::Integer
376
+ SENSITIVE: [:expression]
377
+ end
378
+
317
379
  class DecoderManifestSummary
318
380
  attr_accessor name: ::String
319
381
  attr_accessor arn: ::String
@@ -388,6 +450,18 @@ module Aws::IoTFleetWise
388
450
  SENSITIVE: []
389
451
  end
390
452
 
453
+ class DeleteStateTemplateRequest
454
+ attr_accessor identifier: ::String
455
+ SENSITIVE: []
456
+ end
457
+
458
+ class DeleteStateTemplateResponse
459
+ attr_accessor name: ::String
460
+ attr_accessor arn: ::String
461
+ attr_accessor id: ::String
462
+ SENSITIVE: []
463
+ end
464
+
391
465
  class DeleteVehicleRequest
392
466
  attr_accessor vehicle_name: ::String
393
467
  SENSITIVE: []
@@ -454,6 +528,8 @@ module Aws::IoTFleetWise
454
528
  attr_accessor creation_time: ::Time
455
529
  attr_accessor last_modification_time: ::Time
456
530
  attr_accessor data_destination_configs: ::Array[Types::DataDestinationConfig]
531
+ attr_accessor data_partitions: ::Array[Types::DataPartition]
532
+ attr_accessor signals_to_fetch: ::Array[Types::SignalFetchInformation]
457
533
  SENSITIVE: [:signals_to_collect, :data_extra_dimensions]
458
534
  end
459
535
 
@@ -554,6 +630,25 @@ module Aws::IoTFleetWise
554
630
  SENSITIVE: []
555
631
  end
556
632
 
633
+ class GetStateTemplateRequest
634
+ attr_accessor identifier: ::String
635
+ SENSITIVE: []
636
+ end
637
+
638
+ class GetStateTemplateResponse
639
+ attr_accessor name: ::String
640
+ attr_accessor arn: ::String
641
+ attr_accessor description: ::String
642
+ attr_accessor signal_catalog_arn: ::String
643
+ attr_accessor state_template_properties: ::Array[::String]
644
+ attr_accessor data_extra_dimensions: ::Array[::String]
645
+ attr_accessor metadata_extra_dimensions: ::Array[::String]
646
+ attr_accessor creation_time: ::Time
647
+ attr_accessor last_modification_time: ::Time
648
+ attr_accessor id: ::String
649
+ SENSITIVE: []
650
+ end
651
+
557
652
  class GetVehicleRequest
558
653
  attr_accessor vehicle_name: ::String
559
654
  SENSITIVE: []
@@ -565,6 +660,7 @@ module Aws::IoTFleetWise
565
660
  attr_accessor model_manifest_arn: ::String
566
661
  attr_accessor decoder_manifest_arn: ::String
567
662
  attr_accessor attributes: ::Hash[::String, ::String]
663
+ attr_accessor state_templates: ::Array[Types::StateTemplateAssociation]
568
664
  attr_accessor creation_time: ::Time
569
665
  attr_accessor last_modification_time: ::Time
570
666
  SENSITIVE: []
@@ -629,7 +725,7 @@ module Aws::IoTFleetWise
629
725
 
630
726
  class InvalidNetworkInterface
631
727
  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")
728
+ 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" | "CUSTOM_DECODING_SIGNAL_NETWORK_INTERFACE_INFO_IS_NULL")
633
729
  SENSITIVE: []
634
730
  end
635
731
 
@@ -648,7 +744,7 @@ module Aws::IoTFleetWise
648
744
 
649
745
  class InvalidSignalDecoder
650
746
  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")
747
+ 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" | "CUSTOM_DECODING_SIGNAL_INFO_IS_NULL")
652
748
  attr_accessor hint: ::String
653
749
  SENSITIVE: []
654
750
  end
@@ -795,6 +891,18 @@ module Aws::IoTFleetWise
795
891
  SENSITIVE: []
796
892
  end
797
893
 
894
+ class ListStateTemplatesRequest
895
+ attr_accessor next_token: ::String
896
+ attr_accessor max_results: ::Integer
897
+ SENSITIVE: []
898
+ end
899
+
900
+ class ListStateTemplatesResponse
901
+ attr_accessor summaries: ::Array[Types::StateTemplateSummary]
902
+ attr_accessor next_token: ::String
903
+ SENSITIVE: []
904
+ end
905
+
798
906
  class ListTagsForResourceRequest
799
907
  attr_accessor resource_arn: ::String
800
908
  SENSITIVE: []
@@ -850,6 +958,12 @@ module Aws::IoTFleetWise
850
958
  SENSITIVE: []
851
959
  end
852
960
 
961
+ class MqttTopicConfig
962
+ attr_accessor mqtt_topic_arn: ::String
963
+ attr_accessor execution_role_arn: ::String
964
+ SENSITIVE: []
965
+ end
966
+
853
967
  class NetworkFileDefinition
854
968
  attr_accessor can_dbc: Types::CanDbcDefinition
855
969
  attr_accessor unknown: untyped
@@ -863,10 +977,11 @@ module Aws::IoTFleetWise
863
977
 
864
978
  class NetworkInterface
865
979
  attr_accessor interface_id: ::String
866
- attr_accessor type: ("CAN_INTERFACE" | "OBD_INTERFACE" | "VEHICLE_MIDDLEWARE")
980
+ attr_accessor type: ("CAN_INTERFACE" | "OBD_INTERFACE" | "VEHICLE_MIDDLEWARE" | "CUSTOM_DECODING_INTERFACE")
867
981
  attr_accessor can_interface: Types::CanInterface
868
982
  attr_accessor obd_interface: Types::ObdInterface
869
983
  attr_accessor vehicle_middleware: Types::VehicleMiddleware
984
+ attr_accessor custom_decoding_interface: Types::CustomDecodingInterface
870
985
  SENSITIVE: []
871
986
  end
872
987
 
@@ -931,6 +1046,14 @@ module Aws::IoTFleetWise
931
1046
  SENSITIVE: []
932
1047
  end
933
1048
 
1049
+ class OnChangeStateTemplateUpdateStrategy < Aws::EmptyStructure
1050
+ end
1051
+
1052
+ class PeriodicStateTemplateUpdateStrategy
1053
+ attr_accessor state_template_update_rate: Types::TimePeriod
1054
+ SENSITIVE: []
1055
+ end
1056
+
934
1057
  class PrimitiveMessageDefinition
935
1058
  attr_accessor ros2_primitive_message_definition: Types::ROS2PrimitiveMessageDefinition
936
1059
  attr_accessor unknown: untyped
@@ -1025,11 +1148,34 @@ module Aws::IoTFleetWise
1025
1148
 
1026
1149
  class SignalDecoder
1027
1150
  attr_accessor fully_qualified_name: ::String
1028
- attr_accessor type: ("CAN_SIGNAL" | "OBD_SIGNAL" | "MESSAGE_SIGNAL")
1151
+ attr_accessor type: ("CAN_SIGNAL" | "OBD_SIGNAL" | "MESSAGE_SIGNAL" | "CUSTOM_DECODING_SIGNAL")
1029
1152
  attr_accessor interface_id: ::String
1030
1153
  attr_accessor can_signal: Types::CanSignal
1031
1154
  attr_accessor obd_signal: Types::ObdSignal
1032
1155
  attr_accessor message_signal: Types::MessageSignal
1156
+ attr_accessor custom_decoding_signal: Types::CustomDecodingSignal
1157
+ SENSITIVE: []
1158
+ end
1159
+
1160
+ class SignalFetchConfig
1161
+ attr_accessor time_based: Types::TimeBasedSignalFetchConfig
1162
+ attr_accessor condition_based: Types::ConditionBasedSignalFetchConfig
1163
+ attr_accessor unknown: untyped
1164
+ SENSITIVE: []
1165
+
1166
+ class TimeBased < SignalFetchConfig
1167
+ end
1168
+ class ConditionBased < SignalFetchConfig
1169
+ end
1170
+ class Unknown < SignalFetchConfig
1171
+ end
1172
+ end
1173
+
1174
+ class SignalFetchInformation
1175
+ attr_accessor fully_qualified_name: ::String
1176
+ attr_accessor signal_fetch_config: Types::SignalFetchConfig
1177
+ attr_accessor condition_language_version: ::Integer
1178
+ attr_accessor actions: ::Array[::String]
1033
1179
  SENSITIVE: []
1034
1180
  end
1035
1181
 
@@ -1037,6 +1183,50 @@ module Aws::IoTFleetWise
1037
1183
  attr_accessor name: ::String
1038
1184
  attr_accessor max_sample_count: ::Integer
1039
1185
  attr_accessor minimum_sampling_interval_ms: ::Integer
1186
+ attr_accessor data_partition_id: ::String
1187
+ SENSITIVE: []
1188
+ end
1189
+
1190
+ class StateTemplateAssociation
1191
+ attr_accessor identifier: ::String
1192
+ attr_accessor state_template_update_strategy: Types::StateTemplateUpdateStrategy
1193
+ SENSITIVE: []
1194
+ end
1195
+
1196
+ class StateTemplateSummary
1197
+ attr_accessor name: ::String
1198
+ attr_accessor arn: ::String
1199
+ attr_accessor signal_catalog_arn: ::String
1200
+ attr_accessor description: ::String
1201
+ attr_accessor creation_time: ::Time
1202
+ attr_accessor last_modification_time: ::Time
1203
+ attr_accessor id: ::String
1204
+ SENSITIVE: []
1205
+ end
1206
+
1207
+ class StateTemplateUpdateStrategy
1208
+ attr_accessor periodic: Types::PeriodicStateTemplateUpdateStrategy
1209
+ attr_accessor on_change: Types::OnChangeStateTemplateUpdateStrategy
1210
+ attr_accessor unknown: untyped
1211
+ SENSITIVE: []
1212
+
1213
+ class Periodic < StateTemplateUpdateStrategy
1214
+ end
1215
+ class OnChange < StateTemplateUpdateStrategy
1216
+ end
1217
+ class Unknown < StateTemplateUpdateStrategy
1218
+ end
1219
+ end
1220
+
1221
+ class StorageMaximumSize
1222
+ attr_accessor unit: ("MB" | "GB" | "TB")
1223
+ attr_accessor value: ::Integer
1224
+ SENSITIVE: []
1225
+ end
1226
+
1227
+ class StorageMinimumTimeToLive
1228
+ attr_accessor unit: ("HOURS" | "DAYS" | "WEEKS")
1229
+ attr_accessor value: ::Integer
1040
1230
  SENSITIVE: []
1041
1231
  end
1042
1232
 
@@ -1099,6 +1289,17 @@ module Aws::IoTFleetWise
1099
1289
  SENSITIVE: []
1100
1290
  end
1101
1291
 
1292
+ class TimeBasedSignalFetchConfig
1293
+ attr_accessor execution_frequency_ms: ::Integer
1294
+ SENSITIVE: []
1295
+ end
1296
+
1297
+ class TimePeriod
1298
+ attr_accessor unit: ("MILLISECOND" | "SECOND" | "MINUTE" | "HOUR")
1299
+ attr_accessor value: ::Integer
1300
+ SENSITIVE: []
1301
+ end
1302
+
1102
1303
  class TimestreamConfig
1103
1304
  attr_accessor timestream_table_arn: ::String
1104
1305
  attr_accessor execution_role_arn: ::String
@@ -1155,6 +1356,7 @@ module Aws::IoTFleetWise
1155
1356
  attr_accessor network_interfaces_to_update: ::Array[Types::NetworkInterface]
1156
1357
  attr_accessor network_interfaces_to_remove: ::Array[::String]
1157
1358
  attr_accessor status: ("ACTIVE" | "DRAFT" | "INVALID" | "VALIDATING")
1359
+ attr_accessor default_for_unmapped_signals: ("CUSTOM_DECODING")
1158
1360
  SENSITIVE: []
1159
1361
  end
1160
1362
 
@@ -1206,6 +1408,23 @@ module Aws::IoTFleetWise
1206
1408
  SENSITIVE: []
1207
1409
  end
1208
1410
 
1411
+ class UpdateStateTemplateRequest
1412
+ attr_accessor identifier: ::String
1413
+ attr_accessor description: ::String
1414
+ attr_accessor state_template_properties_to_add: ::Array[::String]
1415
+ attr_accessor state_template_properties_to_remove: ::Array[::String]
1416
+ attr_accessor data_extra_dimensions: ::Array[::String]
1417
+ attr_accessor metadata_extra_dimensions: ::Array[::String]
1418
+ SENSITIVE: []
1419
+ end
1420
+
1421
+ class UpdateStateTemplateResponse
1422
+ attr_accessor name: ::String
1423
+ attr_accessor arn: ::String
1424
+ attr_accessor id: ::String
1425
+ SENSITIVE: []
1426
+ end
1427
+
1209
1428
  class UpdateVehicleError
1210
1429
  attr_accessor vehicle_name: ::String
1211
1430
  attr_accessor code: ::Integer
@@ -1219,6 +1438,8 @@ module Aws::IoTFleetWise
1219
1438
  attr_accessor decoder_manifest_arn: ::String
1220
1439
  attr_accessor attributes: ::Hash[::String, ::String]
1221
1440
  attr_accessor attribute_update_mode: ("Overwrite" | "Merge")
1441
+ attr_accessor state_templates_to_add: ::Array[Types::StateTemplateAssociation]
1442
+ attr_accessor state_templates_to_remove: ::Array[::String]
1222
1443
  SENSITIVE: []
1223
1444
  end
1224
1445
 
@@ -1228,6 +1449,8 @@ module Aws::IoTFleetWise
1228
1449
  attr_accessor decoder_manifest_arn: ::String
1229
1450
  attr_accessor attributes: ::Hash[::String, ::String]
1230
1451
  attr_accessor attribute_update_mode: ("Overwrite" | "Merge")
1452
+ attr_accessor state_templates_to_add: ::Array[Types::StateTemplateAssociation]
1453
+ attr_accessor state_templates_to_remove: ::Array[::String]
1231
1454
  SENSITIVE: []
1232
1455
  end
1233
1456
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-iotfleetwise
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.37.0
4
+ version: 1.38.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-29 00:00:00.000000000 Z
11
+ date: 2024-11-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -36,14 +36,14 @@ dependencies:
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.1'
39
+ version: '1.5'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.1'
46
+ version: '1.5'
47
47
  description: Official AWS Ruby gem for AWS IoT FleetWise. This gem is part of the
48
48
  AWS SDK for Ruby.
49
49
  email: