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

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

Instance Attribute Details

#failedArray<Types::BatchResultErrorEntry>

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

Returns:



2120
2121
2122
2123
2124
2125
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 2120

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

#successfulArray<Types::SendMessageBatchResultEntry>

A list of SendMessageBatchResultEntry items.



2120
2121
2122
2123
2124
2125
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 2120

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