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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBucket.TagFilterPropertystatic final classAn implementation forCfnBucket.TagFilterProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The tag key. -
getValue
The tag value. -
builder
-