Class: Aws::IoTAnalytics::Types::Message
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTAnalytics::Types::Message
- Defined in:
- gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb
Overview
Information about a message.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#message_id ⇒ String
The ID you want to assign to the message.
-
#payload ⇒ String
The payload of the message.
Instance Attribute Details
#message_id ⇒ String
The ID you want to assign to the message. Each messageId
must be
unique within each batch sent.
2250 2251 2252 2253 2254 2255 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 2250 class Message < Struct.new( :message_id, :payload) SENSITIVE = [] include Aws::Structure end |
#payload ⇒ String
The payload of the message. This can be a JSON string or a base64-encoded string representing binary data, in which case you must decode it by means of a pipeline activity.
2250 2251 2252 2253 2254 2255 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 2250 class Message < Struct.new( :message_id, :payload) SENSITIVE = [] include Aws::Structure end |