Interface CfnTopic.TopicCategoryFilterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTopic.TopicCategoryFilterProperty.Jsii$Proxy
- Enclosing class:
CfnTopic
@Stability(Stable)
public static interface CfnTopic.TopicCategoryFilterProperty
extends software.amazon.jsii.JsiiSerializable
A structure that represents a category filter.
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.quicksight.*; TopicCategoryFilterProperty topicCategoryFilterProperty = TopicCategoryFilterProperty.builder() .categoryFilterFunction("categoryFilterFunction") .categoryFilterType("categoryFilterType") .constant(TopicCategoryFilterConstantProperty.builder() .collectiveConstant(CollectiveConstantProperty.builder() .valueList(List.of("valueList")) .build()) .constantType("constantType") .singularConstant("singularConstant") .build()) .inverse(false) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTopic.TopicCategoryFilterProperty
static final class
An implementation forCfnTopic.TopicCategoryFilterProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCategoryFilterFunction
The category filter function.Valid values for this structure are
EXACT
andCONTAINS
. -
getCategoryFilterType
The category filter type.This element is used to specify whether a filter is a simple category filter or an inverse category filter.
-
getConstant
The constant used in a category filter. -
getInverse
A Boolean value that indicates if the filter is inverse. -
builder
-