Interface CfnTemplate.NumericRangeFilterProperty

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

@Stability(Stable) public static interface CfnTemplate.NumericRangeFilterProperty extends software.amazon.jsii.JsiiSerializable
A NumericRangeFilter filters values that are within the value 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.*;
 NumericRangeFilterProperty numericRangeFilterProperty = NumericRangeFilterProperty.builder()
         .column(ColumnIdentifierProperty.builder()
                 .columnName("columnName")
                 .dataSetIdentifier("dataSetIdentifier")
                 .build())
         .filterId("filterId")
         .nullOption("nullOption")
         // the properties below are optional
         .aggregationFunction(AggregationFunctionProperty.builder()
                 .attributeAggregationFunction(AttributeAggregationFunctionProperty.builder()
                         .simpleAttributeAggregation("simpleAttributeAggregation")
                         .valueForMultipleValues("valueForMultipleValues")
                         .build())
                 .categoricalAggregationFunction("categoricalAggregationFunction")
                 .dateAggregationFunction("dateAggregationFunction")
                 .numericalAggregationFunction(NumericalAggregationFunctionProperty.builder()
                         .percentileAggregation(PercentileAggregationProperty.builder()
                                 .percentileValue(123)
                                 .build())
                         .simpleNumericalAggregation("simpleNumericalAggregation")
                         .build())
                 .build())
         .includeMaximum(false)
         .includeMinimum(false)
         .rangeMaximum(NumericRangeFilterValueProperty.builder()
                 .parameter("parameter")
                 .staticValue(123)
                 .build())
         .rangeMinimum(NumericRangeFilterValueProperty.builder()
                 .parameter("parameter")
                 .staticValue(123)
                 .build())
         .selectAllOptions("selectAllOptions")
         .build();
 

See Also: