AWSS3CreateMultipartUploadOutput

Objective-C

@interface AWSS3CreateMultipartUploadOutput

Swift

class AWSS3CreateMultipartUploadOutput
  • If the bucket has a lifecycle rule configured with an action to abort incomplete multipart uploads and the prefix in the lifecycle rule matches the object name in the request, the response includes this header. The header indicates when the initiated multipart upload becomes eligible for an abort operation. For more information, see Aborting Incomplete Multipart Uploads Using a Bucket Lifecycle Policy.

    The response also includes the x-amz-abort-rule-id header that provides the ID of the lifecycle configuration rule that defines this action.

    Declaration

    Objective-C

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

    Swift

    var abortDate: Date? { get set }
  • This header is returned along with the x-amz-abort-date header. It identifies the applicable lifecycle configuration rule that defines the action to abort incomplete multipart uploads.

    Declaration

    Objective-C

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

    Swift

    var abortRuleId: String? { get set }
  • The name of the bucket to which the multipart upload was initiated.

    When using this API with an access point, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this operation with an access point through the AWS SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using Access Points in the Amazon Simple Storage Service Developer Guide.

    When using this API with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com. When using this operation using S3 on Outposts through the AWS SDKs, you provide the Outposts bucket ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see Using S3 on Outposts in the Amazon Simple Storage Service Developer Guide.

    Declaration

    Objective-C

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

    Swift

    var bucket: 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 }
  • If present, indicates that the requester was successfully charged for the request.

    Declaration

    Objective-C

    @property (nonatomic) AWSS3RequestCharged requestCharged;

    Swift

    var requestCharged: AWSS3RequestCharged { get set }
  • If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.

    Declaration

    Objective-C

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

    Swift

    var sseCustomerAlgorithm: String? { get set }
  • If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round-trip message integrity verification of the customer-provided encryption key.

    Declaration

    Objective-C

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

    Swift

    var sseCustomerKeyMD5: String? { get set }
  • If present, specifies the AWS KMS Encryption Context to use for object encryption. The value of this header is a base64-encoded UTF-8 string holding JSON with the encryption context key-value pairs.

    Declaration

    Objective-C

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

    Swift

    var ssekmsEncryptionContext: String? { get set }
  • If present, specifies the ID of the AWS Key Management Service (AWS KMS) symmetric customer managed customer master key (CMK) that was used for the object.

    Declaration

    Objective-C

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

    Swift

    var ssekmsKeyId: String? { get set }
  • The server-side encryption algorithm used when storing this object in Amazon S3 (for example, AES256, aws:kms).

    Declaration

    Objective-C

    @property (nonatomic) AWSS3ServerSideEncryption serverSideEncryption;

    Swift

    var serverSideEncryption: AWSS3ServerSideEncryption { get set }
  • ID for the initiated multipart upload.

    Declaration

    Objective-C

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

    Swift

    var uploadId: String? { get set }