Class: Aws::S3::Types::AbortIncompleteMultipartUpload
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::AbortIncompleteMultipartUpload
- 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
-
#days_after_initiation ⇒ Integer
Indicates the number of days that must pass since initiation for Lifecycle to abort an Incomplete Multipart Upload.
Instance Attribute Details
#days_after_initiation ⇒ Integer
Indicates the number of days that must pass since initiation for Lifecycle to abort an Incomplete Multipart Upload.
29 30 31 32 |
# File 'lib/aws-sdk-s3/types.rb', line 29 class AbortIncompleteMultipartUpload < Struct.new( :days_after_initiation) include Aws::Structure end |