interface LifecycleConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.S3Outposts.CfnBucket.LifecycleConfigurationProperty |
Java | software.amazon.awscdk.services.s3outposts.CfnBucket.LifecycleConfigurationProperty |
Python | aws_cdk.aws_s3outposts.CfnBucket.LifecycleConfigurationProperty |
TypeScript | @aws-cdk/aws-s3outposts » CfnBucket » 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 * as s3outposts from '@aws-cdk/aws-s3outposts';
declare const filter: any;
const lifecycleConfigurationProperty: s3outposts.CfnBucket.LifecycleConfigurationProperty = {
rules: [{
status: 'status',
// the properties below are optional
abortIncompleteMultipartUpload: {
daysAfterInitiation: 123,
},
expirationDate: 'expirationDate',
expirationInDays: 123,
filter: filter,
id: 'id',
}],
};
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
[]
The container for the lifecycle configuration rules for the objects stored in the S3 on Outposts bucket.