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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.NumericRangeFilterPropertystatic final classAn implementation forCfnDashboard.NumericRangeFilterProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe aggregation function of the filter.The column that the filter is applied to.An identifier that uniquely identifies a filter within a dashboard, analysis, or template.default ObjectDetermines whether the maximum value in the filter value range should be included in the filtered results.default ObjectDetermines whether the minimum value in the filter value range should be included in the filtered results.This option determines how null values should be treated when filtering data.default ObjectThe maximum value for the filter value range.default ObjectThe minimum value for the filter value range.default StringSelect all of the values.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumn
The column that the filter is applied to. -
getFilterId
An identifier that uniquely identifies a filter within a dashboard, analysis, or template. -
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
The aggregation function of the filter. -
getIncludeMaximum
Determines whether the maximum value in the filter value range should be included in the filtered results. -
getIncludeMinimum
Determines whether the minimum value in the filter value range should be included in the filtered results. -
getRangeMaximum
The maximum value for the filter value range. -
getRangeMinimum
The minimum value for the filter value range. -
getSelectAllOptions
Select all of the values. Null is not the assigned value of select all.FILTER_ALL_VALUES
-
builder
-