Class: Aws::IoTFleetWise::Types::PrimitiveMessageDefinition

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iotfleetwise/lib/aws-sdk-iotfleetwise/types.rb

Overview

Note:

PrimitiveMessageDefinition is a union - when making an API calls you must set exactly one of the members.

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.

Represents a primitive type node of the complex data structure.

Direct Known Subclasses

Ros2PrimitiveMessageDefinition, Unknown

Defined Under Namespace

Classes: Ros2PrimitiveMessageDefinition, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ros2_primitive_message_definitionTypes::ROS2PrimitiveMessageDefinition

Information about a PrimitiveMessage using a ROS 2 compliant primitive type message of the complex data structure.



3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
# File 'gems/aws-sdk-iotfleetwise/lib/aws-sdk-iotfleetwise/types.rb', line 3147

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



3147
3148
3149
# File 'gems/aws-sdk-iotfleetwise/lib/aws-sdk-iotfleetwise/types.rb', line 3147

def unknown
  @unknown
end