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();
 
  • Method Details

    • getCategoryFilterFunction

      @Stability(Stable) @Nullable default String getCategoryFilterFunction()
      The category filter function.

      Valid values for this structure are EXACT and CONTAINS .

    • getCategoryFilterType

      @Stability(Stable) @Nullable default String 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

      @Stability(Stable) @Nullable default Object getConstant()
      The constant used in a category filter.
    • getInverse

      @Stability(Stable) @Nullable default Object getInverse()
      A Boolean value that indicates if the filter is inverse.
    • builder

      @Stability(Stable) static CfnTopic.TopicCategoryFilterProperty.Builder builder()
      Returns:
      a CfnTopic.TopicCategoryFilterProperty.Builder of CfnTopic.TopicCategoryFilterProperty