interface LifecycleConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3Outposts.CfnBucketPropsMixin.LifecycleConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3outposts#CfnBucketPropsMixin_LifecycleConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3outposts.CfnBucketPropsMixin.LifecycleConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_s3outposts.CfnBucketPropsMixin.LifecycleConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3outposts » 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 { aws_s3outposts as s3outposts } from '@aws-cdk/cfn-property-mixins';
declare const filter: any;
const lifecycleConfigurationProperty: s3outposts.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