interface AbortIncompleteMultipartUploadProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3Express.Mixins.CfnDirectoryBucketPropsMixin.AbortIncompleteMultipartUploadProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3express/mixins#CfnDirectoryBucketPropsMixin_AbortIncompleteMultipartUploadProperty |
Java | software.amazon.awscdk.mixins.preview.services.s3express.mixins.CfnDirectoryBucketPropsMixin.AbortIncompleteMultipartUploadProperty |
Python | aws_cdk.mixins_preview.aws_s3express.mixins.CfnDirectoryBucketPropsMixin.AbortIncompleteMultipartUploadProperty |
TypeScript | @aws-cdk/mixins-preview » aws_s3express » mixins » CfnDirectoryBucketPropsMixin » AbortIncompleteMultipartUploadProperty |
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 .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as s3express_mixins } from '@aws-cdk/mixins-preview/aws-s3express';
const abortIncompleteMultipartUploadProperty: s3express_mixins.CfnDirectoryBucketPropsMixin.AbortIncompleteMultipartUploadProperty = {
daysAfterInitiation: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| days | number | Specifies the number of days after which Amazon S3 aborts an incomplete multipart upload. |
daysAfterInitiation?
Type:
number
(optional)
Specifies the number of days after which Amazon S3 aborts an incomplete multipart upload.

.NET
Go
Java
Python
TypeScript