AWSSQSBatchResultErrorEntry

Objective-C

@interface AWSSQSBatchResultErrorEntry

Swift

class AWSSQSBatchResultErrorEntry

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

Required parameters: [Id, SenderFault, Code]

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

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable code;

    Swift

    var code: String? { get set }
  • The Id of an entry in a batch request.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable identifier;

    Swift

    var identifier: String? { get set }
  • A message explaining why the action failed on this entry.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable message;

    Swift

    var message: String? { get set }
  • Specifies whether the error happened due to the caller of the batch API action.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable senderFault;

    Swift

    var senderFault: NSNumber? { get set }