AWSSNSBatchResultErrorEntry

Objective-C

@interface AWSSNSBatchResultErrorEntry

Swift

class AWSSNSBatchResultErrorEntry

Gives a detailed description of failed messages in the batch.

Required parameters: [Id, Code, SenderFault]

  • 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 }