00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00022 @interface SQSSetQueueAttributesRequest : NSObject
00023
00024 {
00025 NSString* queueUrl;
00026 NSMutableDictionary* attributes;
00027
00028 }
00029
00030
00034 @property (nonatomic, retain) NSString* queueUrl;
00035
00039 @property (nonatomic, retain) NSMutableDictionary* attributes;
00040
00041
00046 -(id)init;
00047
00055 -(id)initWithQueueUrl:(NSString*)theQueueUrl andAttributes:(NSMutableDictionary*)theAttributes;
00056
00063 -(NSString*)description;
00064
00065
00066 @end
00067