Interface CfnBucket.TagFilterProperty

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

@Stability(Stable) public static interface CfnBucket.TagFilterProperty extends software.amazon.jsii.JsiiSerializable
Specifies tags to use to identify a subset of objects for an Amazon S3 bucket.

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.*;
 TagFilterProperty tagFilterProperty = TagFilterProperty.builder()
         .key("key")
         .value("value")
         .build();
 

See Also: