Interface CfnStorageLens.StorageLensGroupLevelProperty

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

@Stability(Stable) public static interface CfnStorageLens.StorageLensGroupLevelProperty extends software.amazon.jsii.JsiiSerializable
This resource determines the scope of Storage Lens group data that is displayed in the Storage Lens dashboard.

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.*;
 StorageLensGroupLevelProperty storageLensGroupLevelProperty = StorageLensGroupLevelProperty.builder()
         .storageLensGroupSelectionCriteria(StorageLensGroupSelectionCriteriaProperty.builder()
                 .exclude(List.of("exclude"))
                 .include(List.of("include"))
                 .build())
         .build();
 

See Also: