interface SelectionCriteriaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3.Mixins.CfnStorageLensPropsMixin.SelectionCriteriaProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3/mixins#CfnStorageLensPropsMixin_SelectionCriteriaProperty |
Java | software.amazon.awscdk.mixins.preview.services.s3.mixins.CfnStorageLensPropsMixin.SelectionCriteriaProperty |
Python | aws_cdk.mixins_preview.aws_s3.mixins.CfnStorageLensPropsMixin.SelectionCriteriaProperty |
TypeScript | @aws-cdk/mixins-preview » aws_s3 » mixins » CfnStorageLensPropsMixin » SelectionCriteriaProperty |
This resource contains the details of the Amazon S3 Storage Lens selection criteria.
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 selectionCriteriaProperty: s3_mixins.CfnStorageLensPropsMixin.SelectionCriteriaProperty = {
delimiter: 'delimiter',
maxDepth: 123,
minStorageBytesPercentage: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| delimiter? | string | This property contains the details of the S3 Storage Lens delimiter being used. |
| max | number | This property contains the details of the max depth that S3 Storage Lens will collect metrics up to. |
| min | number | This property contains the details of the minimum storage bytes percentage threshold that S3 Storage Lens will collect metrics up to. |
delimiter?
Type:
string
(optional)
This property contains the details of the S3 Storage Lens delimiter being used.
maxDepth?
Type:
number
(optional)
This property contains the details of the max depth that S3 Storage Lens will collect metrics up to.
minStorageBytesPercentage?
Type:
number
(optional)
This property contains the details of the minimum storage bytes percentage threshold that S3 Storage Lens will collect metrics up to.

.NET
Go
Java
Python
TypeScript