Interface CfnBucket.FilterProperty

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

@Stability(Stable) public static interface CfnBucket.FilterProperty 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.s3outposts.*;
 FilterProperty filterProperty = FilterProperty.builder()
         .andOperator(FilterAndOperatorProperty.builder()
                 .tags(List.of(FilterTagProperty.builder()
                         .key("key")
                         .value("value")
                         .build()))
                 // the properties below are optional
                 .prefix("prefix")
                 .build())
         .prefix("prefix")
         .tag(FilterTagProperty.builder()
                 .key("key")
                 .value("value")
                 .build())
         .build();