Class: Aws::IoTEventsData::Types::BatchPutMessageRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEventsData::Types::BatchPutMessageRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ioteventsdata/types.rb
Overview
Note:
When making an API call, you may pass BatchPutMessageRequest data as a hash:
{
messages: [ # required
{
message_id: "MessageId", # required
input_name: "EphemeralInputName", # required
payload: "data", # required
timestamp: {
time_in_millis: 1,
},
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#messages ⇒ Array<Types::Message>
The list of messages to send.
Instance Attribute Details
#messages ⇒ Array<Types::Message>
The list of messages to send. Each message has the following format: `'{ “messageId”: “string”, “inputName”: “string”, “payload”: “string”}'`
492 493 494 495 496 |
# File 'lib/aws-sdk-ioteventsdata/types.rb', line 492 class BatchPutMessageRequest < Struct.new( :messages) SENSITIVE = [] include Aws::Structure end |