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

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

Overview

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 Configuration in the Amazon S3 User Guide.

Constant Summary collapse

SENSITIVE =
[]

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)


30
31
32
33
34
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 30

class AbortIncompleteMultipartUpload < Struct.new(
  :days_after_initiation)
  SENSITIVE = []
  include Aws::Structure
end