Class: Aws::S3::Types::AbortIncompleteMultipartUpload

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-s3/types.rb

Overview

Note:

When making an API call, you may pass AbortIncompleteMultipartUpload data as a hash:

{
  days_after_initiation: 1,
}

Specifies the days since the initiation of an incomplete multipart upload that Amazon S3 will wait before permanently removing all parts of the upload. For more information, see [ Aborting Incomplete Multipart Uploads Using a Bucket Lifecycle Policy] in the *Amazon Simple Storage Service Developer Guide*.

[1]: docs.aws.amazon.com/AmazonS3/latest/dev/mpuoverview.html#mpu-abort-incomplete-mpu-lifecycle-config

Instance Attribute Summary collapse

Instance Attribute Details

#days_after_initiationInteger

Specifies the number of days after which Amazon S3 aborts an incomplete multipart upload.

Returns:

  • (Integer)


35
36
37
38
# File 'lib/aws-sdk-s3/types.rb', line 35

class AbortIncompleteMultipartUpload < Struct.new(
  :days_after_initiation)
  include Aws::Structure
end