Class: Aws::SQS::Types::BatchResultErrorEntry

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sqs/types.rb

Overview

Gives a detailed description of the result of an action on each entry in the request.

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

An error code representing why the action failed on this entry.

Returns:

  • (String)


97
98
99
100
101
102
103
# File 'lib/aws-sdk-sqs/types.rb', line 97

class BatchResultErrorEntry < Struct.new(
  :id,
  :sender_fault,
  :code,
  :message)
  include Aws::Structure
end

#idString

The ‘Id` of an entry in a batch request.

Returns:

  • (String)


97
98
99
100
101
102
103
# File 'lib/aws-sdk-sqs/types.rb', line 97

class BatchResultErrorEntry < Struct.new(
  :id,
  :sender_fault,
  :code,
  :message)
  include Aws::Structure
end

#messageString

A message explaining why the action failed on this entry.

Returns:

  • (String)


97
98
99
100
101
102
103
# File 'lib/aws-sdk-sqs/types.rb', line 97

class BatchResultErrorEntry < Struct.new(
  :id,
  :sender_fault,
  :code,
  :message)
  include Aws::Structure
end

#sender_faultBoolean

Specifies whether the error happened due to the producer.

Returns:

  • (Boolean)


97
98
99
100
101
102
103
# File 'lib/aws-sdk-sqs/types.rb', line 97

class BatchResultErrorEntry < Struct.new(
  :id,
  :sender_fault,
  :code,
  :message)
  include Aws::Structure
end