Class: Aws::IoTFleetWise::Types::StructuredMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTFleetWise::Types::StructuredMessage
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-iotfleetwise/types.rb
Overview
StructuredMessage is a union - when making an API calls you must set exactly one of the members.
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.
The structured message for the message signal. It can be defined with either a ‘primitiveMessageDefinition`, `structuredMessageListDefinition`, or `structuredMessageDefinition` recursively.
Direct Known Subclasses
PrimitiveMessageDefinition, StructuredMessageDefinition, StructuredMessageListDefinition, Unknown
Defined Under Namespace
Classes: PrimitiveMessageDefinition, StructuredMessageDefinition, StructuredMessageListDefinition, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#primitive_message_definition ⇒ Types::PrimitiveMessageDefinition
Represents a primitive type node of the complex data structure.
-
#structured_message_definition ⇒ Array<Types::StructuredMessageFieldNameAndDataTypePair>
Represents a struct type node of the complex data structure.
-
#structured_message_list_definition ⇒ Types::StructuredMessageListDefinition
Represents a list type node of the complex data structure.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#primitive_message_definition ⇒ Types::PrimitiveMessageDefinition
Represents a primitive type node of the complex data structure.
4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 |
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 4421 class StructuredMessage < Struct.new( :primitive_message_definition, :structured_message_list_definition, :structured_message_definition, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class PrimitiveMessageDefinition < StructuredMessage; end class StructuredMessageListDefinition < StructuredMessage; end class StructuredMessageDefinition < StructuredMessage; end class Unknown < StructuredMessage; end end |
#structured_message_definition ⇒ Array<Types::StructuredMessageFieldNameAndDataTypePair>
Represents a struct type node of the complex data structure.
4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 |
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 4421 class StructuredMessage < Struct.new( :primitive_message_definition, :structured_message_list_definition, :structured_message_definition, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class PrimitiveMessageDefinition < StructuredMessage; end class StructuredMessageListDefinition < StructuredMessage; end class StructuredMessageDefinition < StructuredMessage; end class Unknown < StructuredMessage; end end |
#structured_message_list_definition ⇒ Types::StructuredMessageListDefinition
Represents a list type node of the complex data structure.
4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 |
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 4421 class StructuredMessage < Struct.new( :primitive_message_definition, :structured_message_list_definition, :structured_message_definition, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class PrimitiveMessageDefinition < StructuredMessage; end class StructuredMessageListDefinition < StructuredMessage; end class StructuredMessageDefinition < StructuredMessage; end class Unknown < StructuredMessage; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
4421 4422 4423 |
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 4421 def unknown @unknown end |