Class: Aws::S3::Types::AbortIncompleteMultipartUpload
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::AbortIncompleteMultipartUpload
- Defined in:
- gems/aws-sdk-s3/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 S3 User Guide.
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.
37 38 39 40 41 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 37 class AbortIncompleteMultipartUpload < Struct.new( :days_after_initiation) SENSITIVE = [] include Aws::Structure end |