AWSS3CompleteMultipartUploadRequest

Objective-C

@interface AWSS3CompleteMultipartUploadRequest

Swift

class AWSS3CompleteMultipartUploadRequest
  • Name of the bucket to which the multipart upload was initiated.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable bucket;

    Swift

    var bucket: String? { get set }
  • The account id of the expected bucket owner. If the bucket is owned by a different account, the request will fail with an HTTP 403 (Access Denied) error.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable expectedBucketOwner;

    Swift

    var expectedBucketOwner: String? { get set }
  • key

    Object key for which the multipart upload was initiated.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable key;

    Swift

    var key: String? { get set }
  • The container for the multipart upload request information.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSS3CompletedMultipartUpload *_Nullable multipartUpload;

    Swift

    var multipartUpload: AWSS3CompletedMultipartUpload? { get set }
  • Confirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. For information about downloading objects from requester pays buckets, see Downloading Objects in Requestor Pays Buckets in the Amazon S3 Developer Guide.

    Declaration

    Objective-C

    @property (nonatomic) AWSS3RequestPayer requestPayer;

    Swift

    var requestPayer: AWSS3RequestPayer { get set }
  • ID for the initiated multipart upload.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable uploadId;

    Swift

    var uploadId: String? { get set }