Class: Aws::SQS::Types::SendMessageBatchResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::SQS::Types::SendMessageBatchResult
- 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.
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.
2161 2162 2163 2164 2165 2166 |
# File 'lib/aws-sdk-sqs/types.rb', line 2161 class SendMessageBatchResult < Struct.new( :successful, :failed) SENSITIVE = [] include Aws::Structure end |
#successful ⇒ Array<Types::SendMessageBatchResultEntry>
A list of ‘ SendMessageBatchResultEntry ` items.
2161 2162 2163 2164 2165 2166 |
# File 'lib/aws-sdk-sqs/types.rb', line 2161 class SendMessageBatchResult < Struct.new( :successful, :failed) SENSITIVE = [] include Aws::Structure end |