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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTopic.TopicCategoryFilterConstantPropertystatic final classAn implementation forCfnTopic.TopicCategoryFilterConstantProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCollectiveConstant
A collective constant used in a category filter.This element is used to specify a list of values for the constant.
- See Also:
-
getConstantType
The type of category filter constant.This element is used to specify whether a constant is a singular or collective. Valid values are
SINGULARandCOLLECTIVE.- See Also:
-
getSingularConstant
A singular constant used in a category filter.This element is used to specify a single value for the constant.
- See Also:
-
builder
-