interface LifecycleConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3Outposts.Mixins.CfnBucketPropsMixin.LifecycleConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3outposts/mixins#CfnBucketPropsMixin_LifecycleConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.s3outposts.mixins.CfnBucketPropsMixin.LifecycleConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_s3outposts.mixins.CfnBucketPropsMixin.LifecycleConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_s3outposts » mixins » CfnBucketPropsMixin » LifecycleConfigurationProperty |
The container for the lifecycle configuration for the objects stored in an S3 on Outposts bucket.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as s3outposts_mixins } from '@aws-cdk/mixins-preview/aws-s3outposts';
declare const filter: any;
const lifecycleConfigurationProperty: s3outposts_mixins.CfnBucketPropsMixin.LifecycleConfigurationProperty = {
rules: [{
abortIncompleteMultipartUpload: {
daysAfterInitiation: 123,
},
expirationDate: 'expirationDate',
expirationInDays: 123,
filter: filter,
id: 'id',
status: 'status',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| rules? | IResolvable | (IResolvable | Rule)[] | The container for the lifecycle configuration rules for the objects stored in the S3 on Outposts bucket. |
rules?
Type:
IResolvable | (IResolvable | Rule)[]
(optional)
The container for the lifecycle configuration rules for the objects stored in the S3 on Outposts bucket.

.NET
Go
Java
Python
TypeScript