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 Lifecycle will wait before permanently removing all parts of the upload.

Instance Attribute Summary collapse

Instance Attribute Details

#days_after_initiationInteger

Indicates the number of days that must pass since initiation for Lifecycle to abort an Incomplete Multipart Upload.

Returns:

  • (Integer)


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

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