Class: Aws::IoTFleetWise::Types::MessageSignal
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTFleetWise::Types::MessageSignal
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotfleetwise/types.rb
Overview
The decoding information for a specific message which support higher order data types.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#structured_message ⇒ Types::StructuredMessage
The structured message for the message signal.
-
#topic_name ⇒ String
The topic name for the message signal.
Instance Attribute Details
#structured_message ⇒ Types::StructuredMessage
The structured message for the message signal. It can be defined with either a ‘primitiveMessageDefinition`, `structuredMessageListDefinition`, or `structuredMessageDefinition` recursively.
3300 3301 3302 3303 3304 3305 |
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 3300 class MessageSignal < Struct.new( :topic_name, :structured_message) SENSITIVE = [] include Aws::Structure end |
#topic_name ⇒ String
The topic name for the message signal. It corresponds to topics in ROS 2.
3300 3301 3302 3303 3304 3305 |
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 3300 class MessageSignal < Struct.new( :topic_name, :structured_message) SENSITIVE = [] include Aws::Structure end |