Class: Aws::SQS::Types::SendMessageBatchResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::SQS::Types::SendMessageBatchResult
- Defined in:
- gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb
Overview
For each message in the batch, the response contains a
SendMessageBatchResultEntry
tag if the message succeeds or a
BatchResultErrorEntry
tag if the message fails.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#failed ⇒ Array<Types::BatchResultErrorEntry>
A list of
BatchResultErrorEntry
items with error details about each message that can't be enqueued. -
#successful ⇒ Array<Types::SendMessageBatchResultEntry>
A list of
SendMessageBatchResultEntry
items.
Instance Attribute Details
#failed ⇒ Array<Types::BatchResultErrorEntry>
A list of BatchResultErrorEntry
items with error details about
each message that can't be enqueued.
2169 2170 2171 2172 2173 2174 |
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 2169 class SendMessageBatchResult < Struct.new( :successful, :failed) SENSITIVE = [] include Aws::Structure end |
#successful ⇒ Array<Types::SendMessageBatchResultEntry>
A list of SendMessageBatchResultEntry
items.
2169 2170 2171 2172 2173 2174 |
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 2169 class SendMessageBatchResult < Struct.new( :successful, :failed) SENSITIVE = [] include Aws::Structure end |