Class: Aws::SQS::Types::BatchResultErrorEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::SQS::Types::BatchResultErrorEntry
- 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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code ⇒ String
An error code representing why the action failed on this entry.
-
#id ⇒ String
The ‘Id` of an entry in a batch request.
-
#message ⇒ String
A message explaining why the action failed on this entry.
-
#sender_fault ⇒ Boolean
Specifies whether the error happened due to the caller of the batch API action.
Instance Attribute Details
#code ⇒ String
An error code representing why the action failed on this entry.
116 117 118 119 120 121 122 123 |
# File 'lib/aws-sdk-sqs/types.rb', line 116 class BatchResultErrorEntry < Struct.new( :id, :sender_fault, :code, :message) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The ‘Id` of an entry in a batch request.
116 117 118 119 120 121 122 123 |
# File 'lib/aws-sdk-sqs/types.rb', line 116 class BatchResultErrorEntry < Struct.new( :id, :sender_fault, :code, :message) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
A message explaining why the action failed on this entry.
116 117 118 119 120 121 122 123 |
# File 'lib/aws-sdk-sqs/types.rb', line 116 class BatchResultErrorEntry < Struct.new( :id, :sender_fault, :code, :message) SENSITIVE = [] include Aws::Structure end |
#sender_fault ⇒ Boolean
Specifies whether the error happened due to the caller of the batch API action.
116 117 118 119 120 121 122 123 |
# File 'lib/aws-sdk-sqs/types.rb', line 116 class BatchResultErrorEntry < Struct.new( :id, :sender_fault, :code, :message) SENSITIVE = [] include Aws::Structure end |