interface MatchObjectAgeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3.Mixins.CfnStorageLensGroupPropsMixin.MatchObjectAgeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3/mixins#CfnStorageLensGroupPropsMixin_MatchObjectAgeProperty |
Java | software.amazon.awscdk.mixins.preview.services.s3.mixins.CfnStorageLensGroupPropsMixin.MatchObjectAgeProperty |
Python | aws_cdk.mixins_preview.aws_s3.mixins.CfnStorageLensGroupPropsMixin.MatchObjectAgeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_s3 » mixins » CfnStorageLensGroupPropsMixin » MatchObjectAgeProperty |
This resource contains DaysGreaterThan and DaysLessThan to define the object age range (minimum and maximum number of days).
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as s3_mixins } from '@aws-cdk/mixins-preview/aws-s3';
const matchObjectAgeProperty: s3_mixins.CfnStorageLensGroupPropsMixin.MatchObjectAgeProperty = {
daysGreaterThan: 123,
daysLessThan: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| days | number | This property indicates the minimum object age in days. |
| days | number | This property indicates the maximum object age in days. |
daysGreaterThan?
Type:
number
(optional)
This property indicates the minimum object age in days.
daysLessThan?
Type:
number
(optional)
This property indicates the maximum object age in days.

.NET
Go
Java
Python
TypeScript