Interface CfnTopic.RangeConstantProperty

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

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