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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTopic.TopicCategoryFilterPropertystatic final classAn 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
EXACTandCONTAINS.- See Also:
-
getCategoryFilterType
The category filter type.This element is used to specify whether a filter is a simple category filter or an inverse category filter.
- See Also:
-
getConstant
The constant used in a category filter.- See Also:
-
getInverse
A Boolean value that indicates if the filter is inverse.Default: - false
- See Also:
-
builder
-