Interface CfnStorageLens.BucketLevelProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnStorageLens.BucketLevelProperty.Jsii$Proxy
Enclosing class:
CfnStorageLens

@Stability(Stable) public static interface CfnStorageLens.BucketLevelProperty extends software.amazon.jsii.JsiiSerializable
A property for the bucket-level storage metrics for 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 software.amazon.awscdk.services.s3.*;
 BucketLevelProperty bucketLevelProperty = BucketLevelProperty.builder()
         .activityMetrics(ActivityMetricsProperty.builder()
                 .isEnabled(false)
                 .build())
         .advancedCostOptimizationMetrics(AdvancedCostOptimizationMetricsProperty.builder()
                 .isEnabled(false)
                 .build())
         .advancedDataProtectionMetrics(AdvancedDataProtectionMetricsProperty.builder()
                 .isEnabled(false)
                 .build())
         .detailedStatusCodesMetrics(DetailedStatusCodesMetricsProperty.builder()
                 .isEnabled(false)
                 .build())
         .prefixLevel(PrefixLevelProperty.builder()
                 .storageMetrics(PrefixLevelStorageMetricsProperty.builder()
                         .isEnabled(false)
                         .selectionCriteria(SelectionCriteriaProperty.builder()
                                 .delimiter("delimiter")
                                 .maxDepth(123)
                                 .minStorageBytesPercentage(123)
                                 .build())
                         .build())
                 .build())
         .build();
 

See Also: