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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBucket.FilterRuleProperty
static final class
An implementation forCfnBucket.FilterRuleProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The object key name prefix or suffix identifying one or more objects to which the filtering rule applies.The maximum length is 1,024 characters. Overlapping prefixes and suffixes are not supported. For more information, see Configuring Event Notifications in the Amazon S3 User Guide .
-
getValue
The value that the filter searches for in object key names. -
builder
-