Class: Aws::SNS::Types::BatchResultErrorEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::SNS::Types::BatchResultErrorEntry
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sns/types.rb
Overview
Gives a detailed description of failed messages in the batch.
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.
107 108 109 110 111 112 113 114 |
# File 'lib/aws-sdk-sns/types.rb', line 107 class BatchResultErrorEntry < Struct.new( :id, :code, :message, :sender_fault) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The ‘Id` of an entry in a batch request
107 108 109 110 111 112 113 114 |
# File 'lib/aws-sdk-sns/types.rb', line 107 class BatchResultErrorEntry < Struct.new( :id, :code, :message, :sender_fault) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
A message explaining why the action failed on this entry.
107 108 109 110 111 112 113 114 |
# File 'lib/aws-sdk-sns/types.rb', line 107 class BatchResultErrorEntry < Struct.new( :id, :code, :message, :sender_fault) SENSITIVE = [] include Aws::Structure end |
#sender_fault ⇒ Boolean
Specifies whether the error happened due to the caller of the batch API action.
107 108 109 110 111 112 113 114 |
# File 'lib/aws-sdk-sns/types.rb', line 107 class BatchResultErrorEntry < Struct.new( :id, :code, :message, :sender_fault) SENSITIVE = [] include Aws::Structure end |