Class: Aws::SQS::Types::DeleteMessageBatchResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::SQS::Types::DeleteMessageBatchResult
- Defined in:
- gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb
Overview
For each message in the batch, the response contains a
DeleteMessageBatchResultEntry
tag if the message is deleted or a
BatchResultErrorEntry
tag if the message can't be deleted.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#failed ⇒ Array<Types::BatchResultErrorEntry>
A list of
BatchResultErrorEntry
items. -
#successful ⇒ Array<Types::DeleteMessageBatchResultEntry>
A list of
DeleteMessageBatchResultEntry
items.
Instance Attribute Details
#failed ⇒ Array<Types::BatchResultErrorEntry>
A list of BatchResultErrorEntry
items.
547 548 549 550 551 552 |
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 547 class DeleteMessageBatchResult < Struct.new( :successful, :failed) SENSITIVE = [] include Aws::Structure end |
#successful ⇒ Array<Types::DeleteMessageBatchResultEntry>
A list of DeleteMessageBatchResultEntry
items.
547 548 549 550 551 552 |
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 547 class DeleteMessageBatchResult < Struct.new( :successful, :failed) SENSITIVE = [] include Aws::Structure end |