Interface CfnTopic.TopicCategoryFilterConstantProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTopic.TopicCategoryFilterConstantProperty.Jsii$Proxy
Enclosing class:
CfnTopic

@Stability(Stable) public static interface CfnTopic.TopicCategoryFilterConstantProperty extends software.amazon.jsii.JsiiSerializable
A constant used in 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.*;
 TopicCategoryFilterConstantProperty topicCategoryFilterConstantProperty = TopicCategoryFilterConstantProperty.builder()
         .collectiveConstant(CollectiveConstantProperty.builder()
                 .valueList(List.of("valueList"))
                 .build())
         .constantType("constantType")
         .singularConstant("singularConstant")
         .build();
 

See Also: