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: