@Stability(value=Stable)
public static interface CfnStorageLens.AccountLevelProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
AccountLevelProperty accountLevelProperty = AccountLevelProperty.builder()
.bucketLevel(BucketLevelProperty.builder()
.activityMetrics(ActivityMetricsProperty.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())
// the properties below are optional
.activityMetrics(ActivityMetricsProperty.builder()
.isEnabled(false)
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnStorageLens.AccountLevelProperty.Builder
A builder for
CfnStorageLens.AccountLevelProperty |
static class |
CfnStorageLens.AccountLevelProperty.Jsii$Proxy
An implementation for
CfnStorageLens.AccountLevelProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnStorageLens.AccountLevelProperty.Builder |
builder() |
default Object |
getActivityMetrics()
This property contains the details of the account-level activity metrics for Amazon S3 Storage Lens.
|
Object |
getBucketLevel()
This property contains the details of the account-level bucket-level configurations for Amazon S3 Storage Lens.
|
@Stability(value=Stable) @NotNull Object getBucketLevel()
@Stability(value=Stable) @Nullable default Object getActivityMetrics()
@Stability(value=Stable) static CfnStorageLens.AccountLevelProperty.Builder builder()
Copyright © 2022. All rights reserved.