Interface CfnStorageLens.StorageLensGroupSelectionCriteriaProperty

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

@Stability(Stable) public static interface CfnStorageLens.StorageLensGroupSelectionCriteriaProperty extends software.amazon.jsii.JsiiSerializable
This resource indicates which Storage Lens group ARNs to include or exclude in the Storage Lens group aggregation.

You can only attach Storage Lens groups to your dashboard if they're included in your Storage Lens group aggregation. If this value is left null, then all Storage Lens groups are selected.

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

See Also: