Interface CfnBucket.FilterAndOperatorProperty

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

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