Interface CfnBucket.FilterRuleProperty

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

@Stability(Stable) public static interface CfnBucket.FilterRuleProperty extends software.amazon.jsii.JsiiSerializable
Specifies the Amazon S3 object key name to filter on and whether to filter on the suffix or prefix of the key name.

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.*;
 FilterRuleProperty filterRuleProperty = FilterRuleProperty.builder()
         .name("name")
         .value("value")
         .build();