Put Attributes Request. More...
#import <SimpleDBPutAttributesRequest.h>
Public Member Functions | |
(id) | - init |
Default constructor for a new PutAttributesRequest object. | |
(id) | - initWithDomainName:andItemName:andAttributes: |
Constructs a new PutAttributesRequest object. | |
(id) | - initWithDomainName:andItemName:andAttributes:andExpected: |
Constructs a new PutAttributesRequest object. | |
(void) | - addAttribute: |
Adds a single object to attributes. | |
(NSString *) | - description |
Returns a string representation of this object; useful for testing and debugging. | |
Properties | |
NSString * | domainName |
The name of the domain in which to perform the operation. | |
NSString * | itemName |
The name of the item. | |
NSMutableArray * | attributes |
The list of attributes. | |
SimpleDBUpdateCondition * | expected |
The update condition which, if specified, determines whether the specified attributes will be updated or not. |
Put Attributes Request.
- (void SimpleDBPutAttributesRequest.)addAttribute: | (SimpleDBReplaceableAttribute *) | attribute |
Adds a single object to attributes.
This function will alloc and init attributes if not already done.
- (NSString* SimpleDBPutAttributesRequest.)description |
Returns a string representation of this object; useful for testing and debugging.
- (id SimpleDBPutAttributesRequest.)init |
Default constructor for a new PutAttributesRequest object.
Callers should use the property methods to initialize this object after creating it.
- (id SimpleDBPutAttributesRequest.)initWithDomainName: | (NSString *) | theDomainName | ||
andItemName: | (NSString *) | theItemName | ||
andAttributes: | (NSMutableArray *) | theAttributes | ||
Constructs a new PutAttributesRequest object.
Callers should use properties to initialize any additional object members.
theDomainName | The name of the domain in which to perform the operation. | |
theItemName | The name of the item. | |
theAttributes | The list of attributes. |
- (id SimpleDBPutAttributesRequest.)initWithDomainName: | (NSString *) | theDomainName | ||
andItemName: | (NSString *) | theItemName | ||
andAttributes: | (NSMutableArray *) | theAttributes | ||
andExpected: | (SimpleDBUpdateCondition *) | theExpected | ||
Constructs a new PutAttributesRequest object.
Callers should use properties to initialize any additional object members.
theDomainName | The name of the domain in which to perform the operation. | |
theItemName | The name of the item. | |
theAttributes | The list of attributes. | |
theExpected | The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated. |
- (SimpleDBUpdateCondition *) expected [read, write, retain] |
The update condition which, if specified, determines whether the specified attributes will be updated or not.
The update condition must be satisfied in order for this request to be processed and the attributes to be updated.