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
Note:
When making an API call, you may pass Message data as a hash:
{
message_id: "MessageId", # required
payload: "data", # required
}
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.
3063 3064 3065 3066 3067 3068 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 3063 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.
3063 3064 3065 3066 3067 3068 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 3063 class Message < Struct.new( :message_id, :payload) SENSITIVE = [] include Aws::Structure end |