Interface CfnStorageLensGroupProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnStorageLensGroupProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:13.237Z") @Stability(Stable) public interface CfnStorageLensGroupProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnStorageLensGroup.

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.*;
 CfnStorageLensGroupProps cfnStorageLensGroupProps = CfnStorageLensGroupProps.builder()
         .filter(FilterProperty.builder()
                 .and(AndProperty.builder()
                         .matchAnyPrefix(List.of("matchAnyPrefix"))
                         .matchAnySuffix(List.of("matchAnySuffix"))
                         .matchAnyTag(List.of(CfnTag.builder()
                                 .key("key")
                                 .value("value")
                                 .build()))
                         .matchObjectAge(MatchObjectAgeProperty.builder()
                                 .daysGreaterThan(123)
                                 .daysLessThan(123)
                                 .build())
                         .matchObjectSize(MatchObjectSizeProperty.builder()
                                 .bytesGreaterThan(123)
                                 .bytesLessThan(123)
                                 .build())
                         .build())
                 .matchAnyPrefix(List.of("matchAnyPrefix"))
                 .matchAnySuffix(List.of("matchAnySuffix"))
                 .matchAnyTag(List.of(CfnTag.builder()
                         .key("key")
                         .value("value")
                         .build()))
                 .matchObjectAge(MatchObjectAgeProperty.builder()
                         .daysGreaterThan(123)
                         .daysLessThan(123)
                         .build())
                 .matchObjectSize(MatchObjectSizeProperty.builder()
                         .bytesGreaterThan(123)
                         .bytesLessThan(123)
                         .build())
                 .or(OrProperty.builder()
                         .matchAnyPrefix(List.of("matchAnyPrefix"))
                         .matchAnySuffix(List.of("matchAnySuffix"))
                         .matchAnyTag(List.of(CfnTag.builder()
                                 .key("key")
                                 .value("value")
                                 .build()))
                         .matchObjectAge(MatchObjectAgeProperty.builder()
                                 .daysGreaterThan(123)
                                 .daysLessThan(123)
                                 .build())
                         .matchObjectSize(MatchObjectSizeProperty.builder()
                                 .bytesGreaterThan(123)
                                 .bytesLessThan(123)
                                 .build())
                         .build())
                 .build())
         .name("name")
         // the properties below are optional
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: