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

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 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

Instance Attribute Details

#failedArray<Types::BatchResultErrorEntry>

A list of BatchResultErrorEntry items.

Returns:



607
608
609
610
611
612
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 607

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

#successfulArray<Types::DeleteMessageBatchResultEntry>

A list of DeleteMessageBatchResultEntry items.



607
608
609
610
611
612
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 607

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