AWSS3MultipartUpload

Objective-C

@interface AWSS3MultipartUpload

Swift

class AWSS3MultipartUpload

Container for the MultipartUpload for the Amazon S3 object.

  • Date and time at which the multipart upload was initiated.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable initiated;

    Swift

    var initiated: Date? { get set }
  • Identifies who initiated the multipart upload.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSS3Initiator *_Nullable initiator;

    Swift

    var initiator: AWSS3Initiator? { get set }
  • key

    Key of the object for which the multipart upload was initiated.

    Declaration

    Objective-C

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

    Swift

    var key: String? { get set }
  • Specifies the owner of the object that is part of the multipart upload.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSS3Owner *_Nullable owner;

    Swift

    var owner: AWSS3Owner? { get set }
  • The class of storage used to store the object.

    Declaration

    Objective-C

    @property (nonatomic) AWSS3StorageClass storageClass;

    Swift

    var storageClass: AWSS3StorageClass { get set }
  • Upload ID that identifies the multipart upload.

    Declaration

    Objective-C

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

    Swift

    var uploadId: String? { get set }