Interface CfnDataSet.DataSetNumericRangeFilterConditionProperty

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

@Stability(Stable) public static interface CfnDataSet.DataSetNumericRangeFilterConditionProperty extends software.amazon.jsii.JsiiSerializable
A filter condition that filters numeric values within a 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.*;
 DataSetNumericRangeFilterConditionProperty dataSetNumericRangeFilterConditionProperty = DataSetNumericRangeFilterConditionProperty.builder()
         .includeMaximum(false)
         .includeMinimum(false)
         .rangeMaximum(DataSetNumericFilterValueProperty.builder()
                 .staticValue(123)
                 .build())
         .rangeMinimum(DataSetNumericFilterValueProperty.builder()
                 .staticValue(123)
                 .build())
         .build();
 

See Also: