Interface CfnTopic.TopicNumericRangeFilterProperty

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

@Stability(Stable) public static interface CfnTopic.TopicNumericRangeFilterProperty 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 falls within the specified range.

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.*;
 TopicNumericRangeFilterProperty topicNumericRangeFilterProperty = TopicNumericRangeFilterProperty.builder()
         .aggregation("aggregation")
         .constant(TopicRangeFilterConstantProperty.builder()
                 .constantType("constantType")
                 .rangeConstant(RangeConstantProperty.builder()
                         .maximum("maximum")
                         .minimum("minimum")
                         .build())
                 .build())
         .inclusive(false)
         .build();
 

See Also: