Interface CfnTopic.TopicNumericEqualityFilterProperty

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

@Stability(Stable) public static interface CfnTopic.TopicNumericEqualityFilterProperty extends software.amazon.jsii.JsiiSerializable
A filter that filters topics based on the value of a numeric field.

The filter includes only topics whose numeric field value matches the specified value.

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.*;
 TopicNumericEqualityFilterProperty topicNumericEqualityFilterProperty = TopicNumericEqualityFilterProperty.builder()
         .aggregation("aggregation")
         .constant(TopicSingularFilterConstantProperty.builder()
                 .constantType("constantType")
                 .singularConstant("singularConstant")
                 .build())
         .build();
 

See Also: