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
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*.
[1]: docs.aws.amazon.com/AmazonS3/latest/dev/mpuoverview.html#mpu-abort-incomplete-mpu-lifecycle-config
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#days_after_initiation ⇒ Integer
Specifies the number of days after which Amazon S3 aborts an incomplete multipart upload.
Instance Attribute Details
#days_after_initiation ⇒ Integer
Specifies the number of days after which Amazon S3 aborts an incomplete multipart upload.
30 31 32 33 34 |
# File 'lib/aws-sdk-s3/types.rb', line 30 class AbortIncompleteMultipartUpload < Struct.new( :days_after_initiation) SENSITIVE = [] include Aws::Structure end |