Class: Aws::IoTFleetWise::Types::PrimitiveMessageDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTFleetWise::Types::PrimitiveMessageDefinition
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-iotfleetwise/types.rb
Overview
PrimitiveMessageDefinition is a union - when making an API calls you must set exactly one of the members.
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.
Represents a primitive type node of the complex data structure.
Direct Known Subclasses
Defined Under Namespace
Classes: Ros2PrimitiveMessageDefinition, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ros2_primitive_message_definition ⇒ Types::ROS2PrimitiveMessageDefinition
Information about a ‘PrimitiveMessage` using a ROS 2 compliant primitive type message of the complex data structure.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#ros2_primitive_message_definition ⇒ Types::ROS2PrimitiveMessageDefinition
Information about a ‘PrimitiveMessage` using a ROS 2 compliant primitive type message of the complex data structure.
3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 |
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 3705 class PrimitiveMessageDefinition < Struct.new( :ros2_primitive_message_definition, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Ros2PrimitiveMessageDefinition < PrimitiveMessageDefinition; end class Unknown < PrimitiveMessageDefinition; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3705 3706 3707 |
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 3705 def unknown @unknown end |