Class: Aws::IoTAnalytics::Types::Message

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#message_idString

The ID you want to assign to the message. Each messageId must be unique within each batch sent.

Returns:

  • (String)


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

#payloadString

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.

Returns:

  • (String)


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