Interface CfnStorageLens.BucketsAndRegionsProperty

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

@Stability(Stable) public static interface CfnStorageLens.BucketsAndRegionsProperty extends software.amazon.jsii.JsiiSerializable
This resource contains the details of the buckets and Regions for the Amazon S3 Storage Lens configuration.

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.*;
 BucketsAndRegionsProperty bucketsAndRegionsProperty = BucketsAndRegionsProperty.builder()
         .buckets(List.of("buckets"))
         .regions(List.of("regions"))
         .build();