aws-sdk-iotfleetwise 1.15.0 → 1.17.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 +244 -32
- data/lib/aws-sdk-iotfleetwise/client_api.rb +96 -6
- data/lib/aws-sdk-iotfleetwise/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-iotfleetwise/types.rb +334 -10
- data/lib/aws-sdk-iotfleetwise.rb +1 -1
- metadata +5 -5
@@ -73,6 +73,13 @@ module Aws::IoTFleetWise
|
|
73
73
|
# A comment in addition to the description.
|
74
74
|
# @return [String]
|
75
75
|
#
|
76
|
+
# @!attribute [rw] struct_fully_qualified_name
|
77
|
+
# The fully qualified name of the struct node for the actuator if the
|
78
|
+
# data type of the actuator is `Struct` or `StructArray`. For example,
|
79
|
+
# the struct fully qualified name of an actuator might be
|
80
|
+
# `Vehicle.Door.LockStruct`.
|
81
|
+
# @return [String]
|
82
|
+
#
|
76
83
|
class Actuator < Struct.new(
|
77
84
|
:fully_qualified_name,
|
78
85
|
:data_type,
|
@@ -83,7 +90,8 @@ module Aws::IoTFleetWise
|
|
83
90
|
:max,
|
84
91
|
:assigned_value,
|
85
92
|
:deprecation_message,
|
86
|
-
:comment
|
93
|
+
:comment,
|
94
|
+
:struct_fully_qualified_name)
|
87
95
|
SENSITIVE = []
|
88
96
|
include Aws::Structure
|
89
97
|
end
|
@@ -331,7 +339,7 @@ module Aws::IoTFleetWise
|
|
331
339
|
# @!attribute [rw] can_dbc_files
|
332
340
|
# A list of DBC files. You can upload only one DBC file for each
|
333
341
|
# network interface and specify up to five (inclusive) files in the
|
334
|
-
# list.
|
342
|
+
# list. The DBC file can be a maximum size of 200 MB.
|
335
343
|
# @return [Array<String>]
|
336
344
|
#
|
337
345
|
# @!attribute [rw] signals_map
|
@@ -1015,6 +1023,85 @@ module Aws::IoTFleetWise
|
|
1015
1023
|
include Aws::Structure
|
1016
1024
|
end
|
1017
1025
|
|
1026
|
+
# Represents a member of the complex data structure. The data type of
|
1027
|
+
# the property can be either primitive or another `struct`.
|
1028
|
+
#
|
1029
|
+
# @!attribute [rw] fully_qualified_name
|
1030
|
+
# The fully qualified name of the custom property. For example, the
|
1031
|
+
# fully qualified name of a custom property might be
|
1032
|
+
# `ComplexDataTypes.VehicleDataTypes.SVMCamera.FPS`.
|
1033
|
+
# @return [String]
|
1034
|
+
#
|
1035
|
+
# @!attribute [rw] data_type
|
1036
|
+
# The data type for the custom property.
|
1037
|
+
# @return [String]
|
1038
|
+
#
|
1039
|
+
# @!attribute [rw] data_encoding
|
1040
|
+
# Indicates whether the property is binary data.
|
1041
|
+
# @return [String]
|
1042
|
+
#
|
1043
|
+
# @!attribute [rw] description
|
1044
|
+
# A brief description of the custom property.
|
1045
|
+
# @return [String]
|
1046
|
+
#
|
1047
|
+
# @!attribute [rw] deprecation_message
|
1048
|
+
# The deprecation message for the node or the branch that was moved or
|
1049
|
+
# deleted.
|
1050
|
+
# @return [String]
|
1051
|
+
#
|
1052
|
+
# @!attribute [rw] comment
|
1053
|
+
# A comment in addition to the description.
|
1054
|
+
# @return [String]
|
1055
|
+
#
|
1056
|
+
# @!attribute [rw] struct_fully_qualified_name
|
1057
|
+
# The fully qualified name of the struct node for the custom property
|
1058
|
+
# if the data type of the custom property is `Struct` or
|
1059
|
+
# `StructArray`.
|
1060
|
+
# @return [String]
|
1061
|
+
#
|
1062
|
+
class CustomProperty < Struct.new(
|
1063
|
+
:fully_qualified_name,
|
1064
|
+
:data_type,
|
1065
|
+
:data_encoding,
|
1066
|
+
:description,
|
1067
|
+
:deprecation_message,
|
1068
|
+
:comment,
|
1069
|
+
:struct_fully_qualified_name)
|
1070
|
+
SENSITIVE = []
|
1071
|
+
include Aws::Structure
|
1072
|
+
end
|
1073
|
+
|
1074
|
+
# The custom structure represents a complex or higher-order data
|
1075
|
+
# structure.
|
1076
|
+
#
|
1077
|
+
# @!attribute [rw] fully_qualified_name
|
1078
|
+
# The fully qualified name of the custom structure. For example, the
|
1079
|
+
# fully qualified name of a custom structure might be
|
1080
|
+
# `ComplexDataTypes.VehicleDataTypes.SVMCamera`.
|
1081
|
+
# @return [String]
|
1082
|
+
#
|
1083
|
+
# @!attribute [rw] description
|
1084
|
+
# A brief description of the custom structure.
|
1085
|
+
# @return [String]
|
1086
|
+
#
|
1087
|
+
# @!attribute [rw] deprecation_message
|
1088
|
+
# The deprecation message for the node or the branch that was moved or
|
1089
|
+
# deleted.
|
1090
|
+
# @return [String]
|
1091
|
+
#
|
1092
|
+
# @!attribute [rw] comment
|
1093
|
+
# A comment in addition to the description.
|
1094
|
+
# @return [String]
|
1095
|
+
#
|
1096
|
+
class CustomStruct < Struct.new(
|
1097
|
+
:fully_qualified_name,
|
1098
|
+
:description,
|
1099
|
+
:deprecation_message,
|
1100
|
+
:comment)
|
1101
|
+
SENSITIVE = []
|
1102
|
+
include Aws::Structure
|
1103
|
+
end
|
1104
|
+
|
1018
1105
|
# The destination where the Amazon Web Services IoT FleetWise campaign
|
1019
1106
|
# sends data. You can send data to be stored in Amazon S3 or Amazon
|
1020
1107
|
# Timestream.
|
@@ -1082,6 +1169,12 @@ module Aws::IoTFleetWise
|
|
1082
1169
|
# epoch (January 1, 1970 at midnight UTC time).
|
1083
1170
|
# @return [Time]
|
1084
1171
|
#
|
1172
|
+
# @!attribute [rw] message
|
1173
|
+
# The detailed message for the decoder manifest. When a decoder
|
1174
|
+
# manifest is in an `INVALID` status, the message contains detailed
|
1175
|
+
# reason and help information.
|
1176
|
+
# @return [String]
|
1177
|
+
#
|
1085
1178
|
class DecoderManifestSummary < Struct.new(
|
1086
1179
|
:name,
|
1087
1180
|
:arn,
|
@@ -1089,7 +1182,8 @@ module Aws::IoTFleetWise
|
|
1089
1182
|
:description,
|
1090
1183
|
:status,
|
1091
1184
|
:creation_time,
|
1092
|
-
:last_modification_time
|
1185
|
+
:last_modification_time,
|
1186
|
+
:message)
|
1093
1187
|
SENSITIVE = []
|
1094
1188
|
include Aws::Structure
|
1095
1189
|
end
|
@@ -1532,6 +1626,12 @@ module Aws::IoTFleetWise
|
|
1532
1626
|
# epoch (January 1, 1970 at midnight UTC time).
|
1533
1627
|
# @return [Time]
|
1534
1628
|
#
|
1629
|
+
# @!attribute [rw] message
|
1630
|
+
# The detailed message for the decoder manifest. When a decoder
|
1631
|
+
# manifest is in an `INVALID` status, the message contains detailed
|
1632
|
+
# reason and help information.
|
1633
|
+
# @return [String]
|
1634
|
+
#
|
1535
1635
|
class GetDecoderManifestResponse < Struct.new(
|
1536
1636
|
:name,
|
1537
1637
|
:arn,
|
@@ -1539,7 +1639,8 @@ module Aws::IoTFleetWise
|
|
1539
1639
|
:model_manifest_arn,
|
1540
1640
|
:status,
|
1541
1641
|
:creation_time,
|
1542
|
-
:last_modification_time
|
1642
|
+
:last_modification_time,
|
1643
|
+
:message)
|
1543
1644
|
SENSITIVE = []
|
1544
1645
|
include Aws::Structure
|
1545
1646
|
end
|
@@ -1557,7 +1658,7 @@ module Aws::IoTFleetWise
|
|
1557
1658
|
# @return [String]
|
1558
1659
|
#
|
1559
1660
|
# @!attribute [rw] encryption_type
|
1560
|
-
# The type of encryption. Set to `KMS_BASED_ENCRYPTION` to use
|
1661
|
+
# The type of encryption. Set to `KMS_BASED_ENCRYPTION` to use a KMS
|
1561
1662
|
# key that you own and manage. Set to `FLEETWISE_DEFAULT_ENCRYPTION`
|
1562
1663
|
# to use an Amazon Web Services managed key that is owned by the
|
1563
1664
|
# Amazon Web Services IoT FleetWise service account.
|
@@ -2107,9 +2208,14 @@ module Aws::IoTFleetWise
|
|
2107
2208
|
# A message about why the signal decoder isn't valid.
|
2108
2209
|
# @return [String]
|
2109
2210
|
#
|
2211
|
+
# @!attribute [rw] hint
|
2212
|
+
# The possible cause for the invalid signal decoder.
|
2213
|
+
# @return [String]
|
2214
|
+
#
|
2110
2215
|
class InvalidSignalDecoder < Struct.new(
|
2111
2216
|
:name,
|
2112
|
-
:reason
|
2217
|
+
:reason,
|
2218
|
+
:hint)
|
2113
2219
|
SENSITIVE = []
|
2114
2220
|
include Aws::Structure
|
2115
2221
|
end
|
@@ -2672,6 +2778,28 @@ module Aws::IoTFleetWise
|
|
2672
2778
|
include Aws::Structure
|
2673
2779
|
end
|
2674
2780
|
|
2781
|
+
# The decoding information for a specific message which support higher
|
2782
|
+
# order data types.
|
2783
|
+
#
|
2784
|
+
# @!attribute [rw] topic_name
|
2785
|
+
# The topic name for the message signal. It corresponds to topics in
|
2786
|
+
# ROS 2.
|
2787
|
+
# @return [String]
|
2788
|
+
#
|
2789
|
+
# @!attribute [rw] structured_message
|
2790
|
+
# The structured message for the message signal. It can be defined
|
2791
|
+
# with either a `primitiveMessageDefinition`,
|
2792
|
+
# `structuredMessageListDefinition`, or `structuredMessageDefinition`
|
2793
|
+
# recursively.
|
2794
|
+
# @return [Types::StructuredMessage]
|
2795
|
+
#
|
2796
|
+
class MessageSignal < Struct.new(
|
2797
|
+
:topic_name,
|
2798
|
+
:structured_message)
|
2799
|
+
SENSITIVE = []
|
2800
|
+
include Aws::Structure
|
2801
|
+
end
|
2802
|
+
|
2675
2803
|
# Information about a vehicle model (model manifest). You can use the
|
2676
2804
|
# API operation to return this information about multiple vehicle
|
2677
2805
|
# models.
|
@@ -2768,11 +2896,17 @@ module Aws::IoTFleetWise
|
|
2768
2896
|
# diagnostic (OBD) II protocol.
|
2769
2897
|
# @return [Types::ObdInterface]
|
2770
2898
|
#
|
2899
|
+
# @!attribute [rw] vehicle_middleware
|
2900
|
+
# The vehicle middleware defined as a type of network interface.
|
2901
|
+
# Examples of vehicle middleware include `ROS2` and `SOME/IP`.
|
2902
|
+
# @return [Types::VehicleMiddleware]
|
2903
|
+
#
|
2771
2904
|
class NetworkInterface < Struct.new(
|
2772
2905
|
:interface_id,
|
2773
2906
|
:type,
|
2774
2907
|
:can_interface,
|
2775
|
-
:obd_interface
|
2908
|
+
:obd_interface,
|
2909
|
+
:vehicle_middleware)
|
2776
2910
|
SENSITIVE = []
|
2777
2911
|
include Aws::Structure
|
2778
2912
|
end
|
@@ -2818,11 +2952,22 @@ module Aws::IoTFleetWise
|
|
2818
2952
|
# </note>
|
2819
2953
|
# @return [Types::Attribute]
|
2820
2954
|
#
|
2955
|
+
# @!attribute [rw] struct
|
2956
|
+
# Represents a complex or higher-order data structure.
|
2957
|
+
# @return [Types::CustomStruct]
|
2958
|
+
#
|
2959
|
+
# @!attribute [rw] property
|
2960
|
+
# Represents a member of the complex data structure. The `datatype` of
|
2961
|
+
# the property can be either primitive or another `struct`.
|
2962
|
+
# @return [Types::CustomProperty]
|
2963
|
+
#
|
2821
2964
|
class Node < Struct.new(
|
2822
2965
|
:branch,
|
2823
2966
|
:sensor,
|
2824
2967
|
:actuator,
|
2825
2968
|
:attribute,
|
2969
|
+
:struct,
|
2970
|
+
:property,
|
2826
2971
|
:unknown)
|
2827
2972
|
SENSITIVE = []
|
2828
2973
|
include Aws::Structure
|
@@ -2832,6 +2977,8 @@ module Aws::IoTFleetWise
|
|
2832
2977
|
class Sensor < Node; end
|
2833
2978
|
class Actuator < Node; end
|
2834
2979
|
class Attribute < Node; end
|
2980
|
+
class Struct < Node; end
|
2981
|
+
class Property < Node; end
|
2835
2982
|
class Unknown < Node; end
|
2836
2983
|
end
|
2837
2984
|
|
@@ -2862,12 +3009,22 @@ module Aws::IoTFleetWise
|
|
2862
3009
|
# actuators.
|
2863
3010
|
# @return [Integer]
|
2864
3011
|
#
|
3012
|
+
# @!attribute [rw] total_structs
|
3013
|
+
# The total structure for the node.
|
3014
|
+
# @return [Integer]
|
3015
|
+
#
|
3016
|
+
# @!attribute [rw] total_properties
|
3017
|
+
# The total properties for the node.
|
3018
|
+
# @return [Integer]
|
3019
|
+
#
|
2865
3020
|
class NodeCounts < Struct.new(
|
2866
3021
|
:total_nodes,
|
2867
3022
|
:total_branches,
|
2868
3023
|
:total_sensors,
|
2869
3024
|
:total_attributes,
|
2870
|
-
:total_actuators
|
3025
|
+
:total_actuators,
|
3026
|
+
:total_structs,
|
3027
|
+
:total_properties)
|
2871
3028
|
SENSITIVE = []
|
2872
3029
|
include Aws::Structure
|
2873
3030
|
end
|
@@ -2971,6 +3128,28 @@ module Aws::IoTFleetWise
|
|
2971
3128
|
include Aws::Structure
|
2972
3129
|
end
|
2973
3130
|
|
3131
|
+
# Represents a primitive type node of the complex data structure.
|
3132
|
+
#
|
3133
|
+
# @note PrimitiveMessageDefinition is a union - when making an API calls you must set exactly one of the members.
|
3134
|
+
#
|
3135
|
+
# @note PrimitiveMessageDefinition is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of PrimitiveMessageDefinition corresponding to the set member.
|
3136
|
+
#
|
3137
|
+
# @!attribute [rw] ros2_primitive_message_definition
|
3138
|
+
# Information about a `PrimitiveMessage` using a ROS 2 compliant
|
3139
|
+
# primitive type message of the complex data structure.
|
3140
|
+
# @return [Types::ROS2PrimitiveMessageDefinition]
|
3141
|
+
#
|
3142
|
+
class PrimitiveMessageDefinition < Struct.new(
|
3143
|
+
:ros2_primitive_message_definition,
|
3144
|
+
:unknown)
|
3145
|
+
SENSITIVE = []
|
3146
|
+
include Aws::Structure
|
3147
|
+
include Aws::Structure::Union
|
3148
|
+
|
3149
|
+
class Ros2PrimitiveMessageDefinition < PrimitiveMessageDefinition; end
|
3150
|
+
class Unknown < PrimitiveMessageDefinition; end
|
3151
|
+
end
|
3152
|
+
|
2974
3153
|
# @!attribute [rw] kms_key_id
|
2975
3154
|
# The ID of the KMS key that is used for encryption.
|
2976
3155
|
# @return [String]
|
@@ -3024,6 +3203,37 @@ module Aws::IoTFleetWise
|
|
3024
3203
|
|
3025
3204
|
class PutLoggingOptionsResponse < Aws::EmptyStructure; end
|
3026
3205
|
|
3206
|
+
# Represents a ROS 2 compliant primitive type message of the complex
|
3207
|
+
# data structure.
|
3208
|
+
#
|
3209
|
+
# @!attribute [rw] primitive_type
|
3210
|
+
# The primitive type (integer, floating point, boolean, etc.) for the
|
3211
|
+
# ROS 2 primitive message definition.
|
3212
|
+
# @return [String]
|
3213
|
+
#
|
3214
|
+
# @!attribute [rw] offset
|
3215
|
+
# The offset used to calculate the signal value. Combined with
|
3216
|
+
# scaling, the calculation is `value = raw_value * scaling + offset`.
|
3217
|
+
# @return [Float]
|
3218
|
+
#
|
3219
|
+
# @!attribute [rw] scaling
|
3220
|
+
# A multiplier used to decode the message.
|
3221
|
+
# @return [Float]
|
3222
|
+
#
|
3223
|
+
# @!attribute [rw] upper_bound
|
3224
|
+
# An optional attribute specifying the upper bound for `STRING` and
|
3225
|
+
# `WSTRING`.
|
3226
|
+
# @return [Integer]
|
3227
|
+
#
|
3228
|
+
class ROS2PrimitiveMessageDefinition < Struct.new(
|
3229
|
+
:primitive_type,
|
3230
|
+
:offset,
|
3231
|
+
:scaling,
|
3232
|
+
:upper_bound)
|
3233
|
+
SENSITIVE = []
|
3234
|
+
include Aws::Structure
|
3235
|
+
end
|
3236
|
+
|
3027
3237
|
# @!attribute [rw] timestream_resources
|
3028
3238
|
# The registered Amazon Timestream resources that Amazon Web Services
|
3029
3239
|
# IoT FleetWise edge agent software can transfer your vehicle data to.
|
@@ -3202,6 +3412,13 @@ module Aws::IoTFleetWise
|
|
3202
3412
|
# A comment in addition to the description.
|
3203
3413
|
# @return [String]
|
3204
3414
|
#
|
3415
|
+
# @!attribute [rw] struct_fully_qualified_name
|
3416
|
+
# The fully qualified name of the struct node for a sensor if the data
|
3417
|
+
# type of the actuator is `Struct` or `StructArray`. For example, the
|
3418
|
+
# struct fully qualified name of a sensor might be
|
3419
|
+
# `Vehicle.ADAS.CameraStruct`.
|
3420
|
+
# @return [String]
|
3421
|
+
#
|
3205
3422
|
class Sensor < Struct.new(
|
3206
3423
|
:fully_qualified_name,
|
3207
3424
|
:data_type,
|
@@ -3211,7 +3428,8 @@ module Aws::IoTFleetWise
|
|
3211
3428
|
:min,
|
3212
3429
|
:max,
|
3213
3430
|
:deprecation_message,
|
3214
|
-
:comment
|
3431
|
+
:comment,
|
3432
|
+
:struct_fully_qualified_name)
|
3215
3433
|
SENSITIVE = []
|
3216
3434
|
include Aws::Structure
|
3217
3435
|
end
|
@@ -3275,12 +3493,18 @@ module Aws::IoTFleetWise
|
|
3275
3493
|
# II protocol.
|
3276
3494
|
# @return [Types::ObdSignal]
|
3277
3495
|
#
|
3496
|
+
# @!attribute [rw] message_signal
|
3497
|
+
# The decoding information for a specific message which supports
|
3498
|
+
# higher order data types.
|
3499
|
+
# @return [Types::MessageSignal]
|
3500
|
+
#
|
3278
3501
|
class SignalDecoder < Struct.new(
|
3279
3502
|
:fully_qualified_name,
|
3280
3503
|
:type,
|
3281
3504
|
:interface_id,
|
3282
3505
|
:can_signal,
|
3283
|
-
:obd_signal
|
3506
|
+
:obd_signal,
|
3507
|
+
:message_signal)
|
3284
3508
|
SENSITIVE = []
|
3285
3509
|
include Aws::Structure
|
3286
3510
|
end
|
@@ -3313,6 +3537,88 @@ module Aws::IoTFleetWise
|
|
3313
3537
|
include Aws::Structure
|
3314
3538
|
end
|
3315
3539
|
|
3540
|
+
# The structured message for the message signal. It can be defined with
|
3541
|
+
# either a `primitiveMessageDefinition`,
|
3542
|
+
# `structuredMessageListDefinition`, or `structuredMessageDefinition`
|
3543
|
+
# recursively.
|
3544
|
+
#
|
3545
|
+
# @note StructuredMessage is a union - when making an API calls you must set exactly one of the members.
|
3546
|
+
#
|
3547
|
+
# @note StructuredMessage is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of StructuredMessage corresponding to the set member.
|
3548
|
+
#
|
3549
|
+
# @!attribute [rw] primitive_message_definition
|
3550
|
+
# Represents a primitive type node of the complex data structure.
|
3551
|
+
# @return [Types::PrimitiveMessageDefinition]
|
3552
|
+
#
|
3553
|
+
# @!attribute [rw] structured_message_list_definition
|
3554
|
+
# Represents a list type node of the complex data structure.
|
3555
|
+
# @return [Types::StructuredMessageListDefinition]
|
3556
|
+
#
|
3557
|
+
# @!attribute [rw] structured_message_definition
|
3558
|
+
# Represents a struct type node of the complex data structure.
|
3559
|
+
# @return [Array<Types::StructuredMessageFieldNameAndDataTypePair>]
|
3560
|
+
#
|
3561
|
+
class StructuredMessage < Struct.new(
|
3562
|
+
:primitive_message_definition,
|
3563
|
+
:structured_message_list_definition,
|
3564
|
+
:structured_message_definition,
|
3565
|
+
:unknown)
|
3566
|
+
SENSITIVE = []
|
3567
|
+
include Aws::Structure
|
3568
|
+
include Aws::Structure::Union
|
3569
|
+
|
3570
|
+
class PrimitiveMessageDefinition < StructuredMessage; end
|
3571
|
+
class StructuredMessageListDefinition < StructuredMessage; end
|
3572
|
+
class StructuredMessageDefinition < StructuredMessage; end
|
3573
|
+
class Unknown < StructuredMessage; end
|
3574
|
+
end
|
3575
|
+
|
3576
|
+
# Represents a `StructureMessageName` to `DataType` map element.
|
3577
|
+
#
|
3578
|
+
# @!attribute [rw] field_name
|
3579
|
+
# The field name of the structured message. It determines how a data
|
3580
|
+
# value is referenced in the target language.
|
3581
|
+
# @return [String]
|
3582
|
+
#
|
3583
|
+
# @!attribute [rw] data_type
|
3584
|
+
# The data type.
|
3585
|
+
# @return [Types::StructuredMessage]
|
3586
|
+
#
|
3587
|
+
class StructuredMessageFieldNameAndDataTypePair < Struct.new(
|
3588
|
+
:field_name,
|
3589
|
+
:data_type)
|
3590
|
+
SENSITIVE = []
|
3591
|
+
include Aws::Structure
|
3592
|
+
end
|
3593
|
+
|
3594
|
+
# Represents a list type node of the complex data structure.
|
3595
|
+
#
|
3596
|
+
# @!attribute [rw] name
|
3597
|
+
# The name of the structured message list definition.
|
3598
|
+
# @return [String]
|
3599
|
+
#
|
3600
|
+
# @!attribute [rw] member_type
|
3601
|
+
# The member type of the structured message list definition.
|
3602
|
+
# @return [Types::StructuredMessage]
|
3603
|
+
#
|
3604
|
+
# @!attribute [rw] list_type
|
3605
|
+
# The type of list of the structured message list definition.
|
3606
|
+
# @return [String]
|
3607
|
+
#
|
3608
|
+
# @!attribute [rw] capacity
|
3609
|
+
# The capacity of the structured message list definition when the list
|
3610
|
+
# type is `FIXED_CAPACITY` or `DYNAMIC_BOUNDED_CAPACITY`.
|
3611
|
+
# @return [Integer]
|
3612
|
+
#
|
3613
|
+
class StructuredMessageListDefinition < Struct.new(
|
3614
|
+
:name,
|
3615
|
+
:member_type,
|
3616
|
+
:list_type,
|
3617
|
+
:capacity)
|
3618
|
+
SENSITIVE = []
|
3619
|
+
include Aws::Structure
|
3620
|
+
end
|
3621
|
+
|
3316
3622
|
# A set of key/value pairs that are used to manage the resource.
|
3317
3623
|
#
|
3318
3624
|
# @!attribute [rw] key
|
@@ -3937,6 +4243,24 @@ module Aws::IoTFleetWise
|
|
3937
4243
|
include Aws::Structure
|
3938
4244
|
end
|
3939
4245
|
|
4246
|
+
# The vehicle middleware defined as a type of network interface.
|
4247
|
+
# Examples of vehicle middleware include `ROS2` and `SOME/IP`.
|
4248
|
+
#
|
4249
|
+
# @!attribute [rw] name
|
4250
|
+
# The name of the vehicle middleware.
|
4251
|
+
# @return [String]
|
4252
|
+
#
|
4253
|
+
# @!attribute [rw] protocol_name
|
4254
|
+
# The protocol name of the vehicle middleware.
|
4255
|
+
# @return [String]
|
4256
|
+
#
|
4257
|
+
class VehicleMiddleware < Struct.new(
|
4258
|
+
:name,
|
4259
|
+
:protocol_name)
|
4260
|
+
SENSITIVE = []
|
4261
|
+
include Aws::Structure
|
4262
|
+
end
|
4263
|
+
|
3940
4264
|
# Information about the state of a vehicle and how it relates to the
|
3941
4265
|
# status of a campaign.
|
3942
4266
|
#
|
data/lib/aws-sdk-iotfleetwise.rb
CHANGED
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.
|
4
|
+
version: 1.17.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-11-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.188.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.188.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +81,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
81
81
|
requirements:
|
82
82
|
- - ">="
|
83
83
|
- !ruby/object:Gem::Version
|
84
|
-
version: '2.
|
84
|
+
version: '2.5'
|
85
85
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
87
|
- - ">="
|