Class: Aws::SQS::Types::DeleteMessageBatchResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::SQS::Types::DeleteMessageBatchResult
- Includes:
- Aws::Structure
- Defined in:
- 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.
604 605 606 607 608 609 |
# File 'lib/aws-sdk-sqs/types.rb', line 604 class DeleteMessageBatchResult < Struct.new( :successful, :failed) SENSITIVE = [] include Aws::Structure end |
#successful ⇒ Array<Types::DeleteMessageBatchResultEntry>
A list of ‘ DeleteMessageBatchResultEntry ` items.
604 605 606 607 608 609 |
# File 'lib/aws-sdk-sqs/types.rb', line 604 class DeleteMessageBatchResult < Struct.new( :successful, :failed) SENSITIVE = [] include Aws::Structure end |