AWSSQSDeleteMessageBatchRequestEntry

Objective-C

@interface AWSSQSDeleteMessageBatchRequestEntry

Swift

class AWSSQSDeleteMessageBatchRequestEntry

Encloses a receipt handle and an identifier for it.

Required parameters: [Id, ReceiptHandle]

  • The identifier for this particular receipt handle. This is used to communicate the result.

    The Ids of a batch request need to be unique within a request.

    This identifier can have up to 80 characters. The following characters are accepted: alphanumeric characters, hyphens(-), and underscores (_).

    Declaration

    Objective-C

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

    Swift

    var identifier: String? { get set }
  • A receipt handle.

    Declaration

    Objective-C

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

    Swift

    var receiptHandle: String? { get set }