Inherits from AmazonServiceRequestConfig : NSObject
Declared in SQSSendMessageBatchRequest.h

Overview

Send Message Batch Request

Tasks

  •   queueUrl

    The URL of the SQS queue to take action on.

    property
  •   entries

    A list of SendMessageBatchRequestEntrys.

    property
  • – init

    Default constructor for a new SendMessageBatchRequest object. Callers should use the property methods to initialize this object after creating it.

  • – initWithQueueUrl:

    Constructs a new SendMessageBatchRequest object. Callers should use properties to initialize any additional object members.

  • – initWithQueueUrl:andEntries:

    Constructs a new SendMessageBatchRequest object. Callers should use properties to initialize any additional object members.

  • – addEntry:

    Adds a single object to entries. This function will alloc and init entries if not already done.

  • – description

    Returns a string representation of this object; useful for testing and debugging.

Properties

entries

@property (nonatomic, retain) NSMutableArray *entries

Discussion

A list of SendMessageBatchRequestEntrys.

Declared In

SQSSendMessageBatchRequest.h

queueUrl

The URL of the SQS queue to take action on.

@property (nonatomic, retain) NSString *queueUrl

Discussion

The URL of the SQS queue to take action on.

Declared In

SQSSendMessageBatchRequest.h

Instance Methods

addEntry:

Adds a single object to entries. This function will alloc and init entries if not already done.

- (void)addEntry:(SQSSendMessageBatchRequestEntry *)entryObject

Discussion

Adds a single object to entries. This function will alloc and init entries if not already done.

Declared In

SQSSendMessageBatchRequest.h

description

Returns a string representation of this object; useful for testing and debugging.

- (NSString *)description

Return Value

A string representation of this object.

Discussion

Returns a string representation of this object; useful for testing and debugging.

Declared In

SQSSendMessageBatchRequest.h

init

Default constructor for a new SendMessageBatchRequest object. Callers should use the property methods to initialize this object after creating it.

- (id)init

Discussion

Default constructor for a new SendMessageBatchRequest object. Callers should use the property methods to initialize this object after creating it.

Declared In

SQSSendMessageBatchRequest.h

initWithQueueUrl:

Constructs a new SendMessageBatchRequest object. Callers should use properties to initialize any additional object members.

- (id)initWithQueueUrl:(NSString *)theQueueUrl

Parameters

theQueueUrl

The URL of the SQS queue to take action on.

Discussion

Constructs a new SendMessageBatchRequest object. Callers should use properties to initialize any additional object members.

Declared In

SQSSendMessageBatchRequest.h

initWithQueueUrl:andEntries:

Constructs a new SendMessageBatchRequest object. Callers should use properties to initialize any additional object members.

- (id)initWithQueueUrl:(NSString *)theQueueUrl andEntries:(NSMutableArray *)theEntries

Parameters

theQueueUrl

The URL of the SQS queue to take action on.

theEntries

A list of SendMessageBatchRequestEntrys.

Discussion

Constructs a new SendMessageBatchRequest object. Callers should use properties to initialize any additional object members.

Declared In

SQSSendMessageBatchRequest.h