AWSRequest
Objective-C
@interface AWSRequest : AWSModel
@property (nonatomic, copy) AWSNetworkingUploadProgressBlock uploadProgress;
@property (nonatomic, copy) AWSNetworkingDownloadProgressBlock downloadProgress;
@property (nonatomic, assign, readonly, getter = isCancelled) BOOL cancelled;
@property (nonatomic, strong) NSURL *downloadingFileURL;
- (AWSTask *)cancel;
- (AWSTask *)pause;
@end
Swift
class AWSRequest : AWSModel
Undocumented
-
Undocumented
Declaration
Objective-C
@property (nonatomic, copy) AWSNetworkingUploadProgressBlock uploadProgress
Swift
var uploadProgress: AWSNetworkingUploadProgressBlock! { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic, copy) AWSNetworkingDownloadProgressBlock downloadProgress
Swift
var downloadProgress: AWSNetworkingDownloadProgressBlock! { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic, readonly, getter = isCancelled) BOOL cancelled
Swift
var isCancelled: Bool { get }
-
Undocumented
Declaration
Objective-C
@property (nonatomic, strong) NSURL *downloadingFileURL
Swift
var downloadingFileURL: URL! { get set }