Request Object for Listing the Objects in the specified bucket. More...
#import <S3ListObjectsRequest.h>
Inherits S3Request.
Public Member Functions | |
(id) | - initWithName: |
Properties | |
NSString * | prefix |
Limits the response to keys that begin with the specified prefix. | |
NSString * | marker |
Specifies the key to start with when listing objects in a bucket. | |
NSString * | delimiter |
A delimiter is a character you use to group keys. | |
NSInteger | maxKeys |
Sets the maximum number of keys returned in the response body. |
Request Object for Listing the Objects in the specified bucket.
- (NSString *) delimiter [read, write, retain] |
A delimiter is a character you use to group keys.
All keys that contain the same string between the prefix and the first occurrence of the delimiter are grouped under a single result element.
- (NSString *) marker [read, write, retain] |
Specifies the key to start with when listing objects in a bucket.
Amazon S3 lists objects in alphabetical order.
- (NSInteger) maxKeys [read, write, assign] |
Sets the maximum number of keys returned in the response body.
The response might contain fewer keys but will never contain more.
- (NSString *) prefix [read, write, retain] |
Limits the response to keys that begin with the specified prefix.
You can use prefixes to separate a bucket into different groupings of keys.