Interface CfnTopic.TopicRangeFilterConstantProperty

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

@Stability(Stable) public static interface CfnTopic.TopicRangeFilterConstantProperty extends software.amazon.jsii.JsiiSerializable
A constant value that is used in a range filter to specify the endpoints of the 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.*;
 TopicRangeFilterConstantProperty topicRangeFilterConstantProperty = TopicRangeFilterConstantProperty.builder()
         .constantType("constantType")
         .rangeConstant(RangeConstantProperty.builder()
                 .maximum("maximum")
                 .minimum("minimum")
                 .build())
         .build();