interface PrefixLevelProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3.Mixins.CfnStorageLensPropsMixin.PrefixLevelProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3/mixins#CfnStorageLensPropsMixin_PrefixLevelProperty |
Java | software.amazon.awscdk.mixins.preview.services.s3.mixins.CfnStorageLensPropsMixin.PrefixLevelProperty |
Python | aws_cdk.mixins_preview.aws_s3.mixins.CfnStorageLensPropsMixin.PrefixLevelProperty |
TypeScript | @aws-cdk/mixins-preview » aws_s3 » mixins » CfnStorageLensPropsMixin » PrefixLevelProperty |
This resource contains the details of the prefix-level of the Amazon S3 Storage Lens.
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 prefixLevelProperty: s3_mixins.CfnStorageLensPropsMixin.PrefixLevelProperty = {
storageMetrics: {
isEnabled: false,
selectionCriteria: {
delimiter: 'delimiter',
maxDepth: 123,
minStorageBytesPercentage: 123,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| storage | IResolvable | Prefix | A property for the prefix-level storage metrics for Amazon S3 Storage Lens. |
storageMetrics?
Type:
IResolvable | Prefix
(optional)
A property for the prefix-level storage metrics for Amazon S3 Storage Lens.

.NET
Go
Java
Python
TypeScript