Class: Aws::SQS::Types::SendMessageBatchResult

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
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.

Instance Attribute Summary collapse

Instance Attribute Details

#failedArray<Types::BatchResultErrorEntry>

A list of ‘ BatchResultErrorEntry ` items with error details about each message that can’t be enqueued.

Returns:



1499
1500
1501
1502
1503
# File 'lib/aws-sdk-sqs/types.rb', line 1499

class SendMessageBatchResult < Struct.new(
  :successful,
  :failed)
  include Aws::Structure
end

#successfulArray<Types::SendMessageBatchResultEntry>

A list of ‘ SendMessageBatchResultEntry ` items.



1499
1500
1501
1502
1503
# File 'lib/aws-sdk-sqs/types.rb', line 1499

class SendMessageBatchResult < Struct.new(
  :successful,
  :failed)
  include Aws::Structure
end