amazonka-s3-2.0: Amazon Simple Storage Service SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.S3.AbortMultipartUpload

Description

This action aborts a multipart upload. After a multipart upload is aborted, no additional parts can be uploaded using that upload ID. The storage consumed by any previously uploaded parts will be freed. However, if any part uploads are currently in progress, those part uploads might or might not succeed. As a result, it might be necessary to abort a given multipart upload multiple times in order to completely free all storage consumed by all parts.

To verify that all parts have been removed, so you don't get charged for the part storage, you should call the ListParts action and ensure that the parts list is empty.

For information about permissions required to use the multipart upload, see Multipart Upload and Permissions.

The following operations are related to AbortMultipartUpload:

Synopsis

Creating a Request

data AbortMultipartUpload Source #

See: newAbortMultipartUpload smart constructor.

Constructors

AbortMultipartUpload' 

Fields

  • expectedBucketOwner :: Maybe Text

    The account ID of the expected bucket owner. If the bucket is owned by a different account, the request fails with the HTTP status code 403 Forbidden (access denied).

  • requestPayer :: Maybe RequestPayer
     
  • bucket :: BucketName

    The bucket name to which the upload was taking place.

    When using this action 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 action with an access point through the Amazon Web Services 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 S3 User Guide.

    When using this action 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 action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts bucket ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see Using Amazon S3 on Outposts in the Amazon S3 User Guide.

  • key :: ObjectKey

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

  • uploadId :: Text

    Upload ID that identifies the multipart upload.

Instances

Instances details
ToHeaders AbortMultipartUpload Source # 
Instance details

Defined in Amazonka.S3.AbortMultipartUpload

ToPath AbortMultipartUpload Source # 
Instance details

Defined in Amazonka.S3.AbortMultipartUpload

ToQuery AbortMultipartUpload Source # 
Instance details

Defined in Amazonka.S3.AbortMultipartUpload

AWSRequest AbortMultipartUpload Source # 
Instance details

Defined in Amazonka.S3.AbortMultipartUpload

Associated Types

type AWSResponse AbortMultipartUpload #

Generic AbortMultipartUpload Source # 
Instance details

Defined in Amazonka.S3.AbortMultipartUpload

Associated Types

type Rep AbortMultipartUpload :: Type -> Type #

Read AbortMultipartUpload Source # 
Instance details

Defined in Amazonka.S3.AbortMultipartUpload

Show AbortMultipartUpload Source # 
Instance details

Defined in Amazonka.S3.AbortMultipartUpload

NFData AbortMultipartUpload Source # 
Instance details

Defined in Amazonka.S3.AbortMultipartUpload

Methods

rnf :: AbortMultipartUpload -> () #

Eq AbortMultipartUpload Source # 
Instance details

Defined in Amazonka.S3.AbortMultipartUpload

Hashable AbortMultipartUpload Source # 
Instance details

Defined in Amazonka.S3.AbortMultipartUpload

type AWSResponse AbortMultipartUpload Source # 
Instance details

Defined in Amazonka.S3.AbortMultipartUpload

type Rep AbortMultipartUpload Source # 
Instance details

Defined in Amazonka.S3.AbortMultipartUpload

type Rep AbortMultipartUpload = D1 ('MetaData "AbortMultipartUpload" "Amazonka.S3.AbortMultipartUpload" "amazonka-s3-2.0-CNZtv1UmVzj28JXsFvwNoj" 'False) (C1 ('MetaCons "AbortMultipartUpload'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "expectedBucketOwner") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "requestPayer") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RequestPayer))) :*: (S1 ('MetaSel ('Just "bucket") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 BucketName) :*: (S1 ('MetaSel ('Just "key") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ObjectKey) :*: S1 ('MetaSel ('Just "uploadId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))

newAbortMultipartUpload Source #

Create a value of AbortMultipartUpload with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:expectedBucketOwner:AbortMultipartUpload', abortMultipartUpload_expectedBucketOwner - The account ID of the expected bucket owner. If the bucket is owned by a different account, the request fails with the HTTP status code 403 Forbidden (access denied).

$sel:requestPayer:AbortMultipartUpload', abortMultipartUpload_requestPayer - Undocumented member.

AbortMultipartUpload, abortMultipartUpload_bucket - The bucket name to which the upload was taking place.

When using this action 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 action with an access point through the Amazon Web Services 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 S3 User Guide.

When using this action 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 action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts bucket ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see Using Amazon S3 on Outposts in the Amazon S3 User Guide.

AbortMultipartUpload, abortMultipartUpload_key - Key of the object for which the multipart upload was initiated.

AbortMultipartUpload, abortMultipartUpload_uploadId - Upload ID that identifies the multipart upload.

Request Lenses

abortMultipartUpload_expectedBucketOwner :: Lens' AbortMultipartUpload (Maybe Text) Source #

The account ID of the expected bucket owner. If the bucket is owned by a different account, the request fails with the HTTP status code 403 Forbidden (access denied).

abortMultipartUpload_bucket :: Lens' AbortMultipartUpload BucketName Source #

The bucket name to which the upload was taking place.

When using this action 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 action with an access point through the Amazon Web Services 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 S3 User Guide.

When using this action 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 action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts bucket ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see Using Amazon S3 on Outposts in the Amazon S3 User Guide.

abortMultipartUpload_key :: Lens' AbortMultipartUpload ObjectKey Source #

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

abortMultipartUpload_uploadId :: Lens' AbortMultipartUpload Text Source #

Upload ID that identifies the multipart upload.

Destructuring the Response

data AbortMultipartUploadResponse Source #

See: newAbortMultipartUploadResponse smart constructor.

Constructors

AbortMultipartUploadResponse' 

Fields

Instances

Instances details
Generic AbortMultipartUploadResponse Source # 
Instance details

Defined in Amazonka.S3.AbortMultipartUpload

Associated Types

type Rep AbortMultipartUploadResponse :: Type -> Type #

Read AbortMultipartUploadResponse Source # 
Instance details

Defined in Amazonka.S3.AbortMultipartUpload

Show AbortMultipartUploadResponse Source # 
Instance details

Defined in Amazonka.S3.AbortMultipartUpload

NFData AbortMultipartUploadResponse Source # 
Instance details

Defined in Amazonka.S3.AbortMultipartUpload

Eq AbortMultipartUploadResponse Source # 
Instance details

Defined in Amazonka.S3.AbortMultipartUpload

type Rep AbortMultipartUploadResponse Source # 
Instance details

Defined in Amazonka.S3.AbortMultipartUpload

type Rep AbortMultipartUploadResponse = D1 ('MetaData "AbortMultipartUploadResponse" "Amazonka.S3.AbortMultipartUpload" "amazonka-s3-2.0-CNZtv1UmVzj28JXsFvwNoj" 'False) (C1 ('MetaCons "AbortMultipartUploadResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "requestCharged") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RequestCharged)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newAbortMultipartUploadResponse Source #

Create a value of AbortMultipartUploadResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:requestCharged:AbortMultipartUploadResponse', abortMultipartUploadResponse_requestCharged - Undocumented member.

$sel:httpStatus:AbortMultipartUploadResponse', abortMultipartUploadResponse_httpStatus - The response's http status code.

Response Lenses