Class: Aws::SQS::Types::ChangeMessageVisibilityBatchResult

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 ‘ ChangeMessageVisibilityBatchResultEntry ` tag if the message succeeds or a ` BatchResultErrorEntry ` tag if the message fails.

Instance Attribute Summary collapse

Instance Attribute Details

#failedArray<Types::BatchResultErrorEntry>

A list of ‘ BatchResultErrorEntry ` items.

Returns:



202
203
204
205
206
# File 'lib/aws-sdk-sqs/types.rb', line 202

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

#successfulArray<Types::ChangeMessageVisibilityBatchResultEntry>

A list of ‘ ChangeMessageVisibilityBatchResultEntry ` items.



202
203
204
205
206
# File 'lib/aws-sdk-sqs/types.rb', line 202

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