00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #import <Foundation/Foundation.h>
00017 #import "S3Request.h"
00018
00023 @interface S3GetPreSignedURLRequest : S3Request {
00024 NSDate *expires;
00025 NSString *protocol;
00026 NSString *httpVerb;
00027 NSString *accessKey;
00028 }
00029
00033 @property(nonatomic, retain) NSDate* expires;
00034
00040 @property(nonatomic, retain) NSString* protocol;
00041
00047 @property(nonatomic, retain) NSString* httpVerb;
00048
00053 @property(nonatomic, retain) NSString* accessKey;
00054
00055 @property(nonatomic, readonly) NSString* queryString;
00056
00057 @end