Interface CfnDashboard.NumericRangeFilterProperty

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

@Stability(Stable) public static interface CfnDashboard.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()
                 .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();
 
  • Method Details

    • getColumn

      @Stability(Stable) @NotNull Object getColumn()
      The column that the filter is applied to.
    • getFilterId

      @Stability(Stable) @NotNull String getFilterId()
      An identifier that uniquely identifies a filter within a dashboard, analysis, or template.
    • getNullOption

      @Stability(Stable) @NotNull String getNullOption()
      This option determines how null values should be treated when filtering data.

      • ALL_VALUES : Include null values in filtered results.
      • NULLS_ONLY : Only include null values in filtered results.
      • NON_NULLS_ONLY : Exclude null values from filtered results.
    • getAggregationFunction

      @Stability(Stable) @Nullable default Object getAggregationFunction()
      The aggregation function of the filter.
    • getIncludeMaximum

      @Stability(Stable) @Nullable default Object getIncludeMaximum()
      Determines whether the maximum value in the filter value range should be included in the filtered results.
    • getIncludeMinimum

      @Stability(Stable) @Nullable default Object getIncludeMinimum()
      Determines whether the minimum value in the filter value range should be included in the filtered results.
    • getRangeMaximum

      @Stability(Stable) @Nullable default Object getRangeMaximum()
      The maximum value for the filter value range.
    • getRangeMinimum

      @Stability(Stable) @Nullable default Object getRangeMinimum()
      The minimum value for the filter value range.
    • getSelectAllOptions

      @Stability(Stable) @Nullable default String getSelectAllOptions()
      Select all of the values. Null is not the assigned value of select all.

      • FILTER_ALL_VALUES
    • builder

      @Stability(Stable) static CfnDashboard.NumericRangeFilterProperty.Builder builder()
      Returns:
      a CfnDashboard.NumericRangeFilterProperty.Builder of CfnDashboard.NumericRangeFilterProperty