Get Attributes Request. More...
#import <SimpleDBGetAttributesRequest.h>
Public Member Functions | |
(id) | - init |
Default constructor for a new GetAttributesRequest object. | |
(id) | - initWithDomainName:andItemName: |
Constructs a new GetAttributesRequest object. | |
(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 * | attributeNames |
The names of the attributes. | |
bool | consistentRead |
Determines whether or not strong consistency should be enforced when data is read from SimpleDB. |
Get Attributes Request.
- (NSString* SimpleDBGetAttributesRequest.)description |
Returns a string representation of this object; useful for testing and debugging.
- (id SimpleDBGetAttributesRequest.)init |
Default constructor for a new GetAttributesRequest object.
Callers should use the property methods to initialize this object after creating it.
- (id SimpleDBGetAttributesRequest.)initWithDomainName: | (NSString *) | theDomainName | ||
andItemName: | (NSString *) | theItemName | ||
Constructs a new GetAttributesRequest 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. |
- (bool) consistentRead [read, write, assign] |
Determines whether or not strong consistency should be enforced when data is read from SimpleDB.
If true
, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.