Class: Aws::SQS::Types::DeleteMessageBatchResult

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 ‘ DeleteMessageBatchResultEntry ` tag if the message is deleted or a ` BatchResultErrorEntry ` tag if the message can’t be deleted.

Instance Attribute Summary collapse

Instance Attribute Details

#failedArray<Types::BatchResultErrorEntry>

A list of ‘ BatchResultErrorEntry ` items.

Returns:



513
514
515
516
517
# File 'lib/aws-sdk-sqs/types.rb', line 513

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

#successfulArray<Types::DeleteMessageBatchResultEntry>

A list of ‘ DeleteMessageBatchResultEntry ` items.



513
514
515
516
517
# File 'lib/aws-sdk-sqs/types.rb', line 513

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