interface MatchObjectSizeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3.Mixins.CfnStorageLensGroupPropsMixin.MatchObjectSizeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3/mixins#CfnStorageLensGroupPropsMixin_MatchObjectSizeProperty |
Java | software.amazon.awscdk.mixins.preview.services.s3.mixins.CfnStorageLensGroupPropsMixin.MatchObjectSizeProperty |
Python | aws_cdk.mixins_preview.aws_s3.mixins.CfnStorageLensGroupPropsMixin.MatchObjectSizeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_s3 » mixins » CfnStorageLensGroupPropsMixin » MatchObjectSizeProperty |
This resource filters objects that match the specified object size range.
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 matchObjectSizeProperty: s3_mixins.CfnStorageLensGroupPropsMixin.MatchObjectSizeProperty = {
bytesGreaterThan: 123,
bytesLessThan: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| bytes | number | This property specifies the minimum object size in bytes. |
| bytes | number | This property specifies the maximum object size in bytes. |
bytesGreaterThan?
Type:
number
(optional)
This property specifies the minimum object size in bytes.
The value must be a positive number, greater than 0 and less than 5 TB.
bytesLessThan?
Type:
number
(optional)
This property specifies the maximum object size in bytes.
The value must be a positive number, greater than the minimum object size and less than 5 TB.

.NET
Go
Java
Python
TypeScript