amazonka-quicksight-2.0: Amazon QuickSight SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.QuickSight.Types.NumericRangeFilter

Description

 
Synopsis

Documentation

data NumericRangeFilter Source #

A NumericRangeFilter filters values that are within the value range.

See: newNumericRangeFilter smart constructor.

Constructors

NumericRangeFilter' 

Fields

Instances

Instances details
FromJSON NumericRangeFilter Source # 
Instance details

Defined in Amazonka.QuickSight.Types.NumericRangeFilter

ToJSON NumericRangeFilter Source # 
Instance details

Defined in Amazonka.QuickSight.Types.NumericRangeFilter

Generic NumericRangeFilter Source # 
Instance details

Defined in Amazonka.QuickSight.Types.NumericRangeFilter

Associated Types

type Rep NumericRangeFilter :: Type -> Type #

Read NumericRangeFilter Source # 
Instance details

Defined in Amazonka.QuickSight.Types.NumericRangeFilter

Show NumericRangeFilter Source # 
Instance details

Defined in Amazonka.QuickSight.Types.NumericRangeFilter

NFData NumericRangeFilter Source # 
Instance details

Defined in Amazonka.QuickSight.Types.NumericRangeFilter

Methods

rnf :: NumericRangeFilter -> () #

Eq NumericRangeFilter Source # 
Instance details

Defined in Amazonka.QuickSight.Types.NumericRangeFilter

Hashable NumericRangeFilter Source # 
Instance details

Defined in Amazonka.QuickSight.Types.NumericRangeFilter

type Rep NumericRangeFilter Source # 
Instance details

Defined in Amazonka.QuickSight.Types.NumericRangeFilter

newNumericRangeFilter Source #

Create a value of NumericRangeFilter with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:aggregationFunction:NumericRangeFilter', numericRangeFilter_aggregationFunction - The aggregation function of the filter.

$sel:includeMaximum:NumericRangeFilter', numericRangeFilter_includeMaximum - Determines whether the maximum value in the filter value range should be included in the filtered results.

$sel:includeMinimum:NumericRangeFilter', numericRangeFilter_includeMinimum - Determines whether the minimum value in the filter value range should be included in the filtered results.

$sel:rangeMaximum:NumericRangeFilter', numericRangeFilter_rangeMaximum - The maximum value for the filter value range.

$sel:rangeMinimum:NumericRangeFilter', numericRangeFilter_rangeMinimum - The minimum value for the filter value range.

$sel:selectAllOptions:NumericRangeFilter', numericRangeFilter_selectAllOptions - Select all of the values. Null is not the assigned value of select all.

  • FILTER_ALL_VALUES

$sel:filterId:NumericRangeFilter', numericRangeFilter_filterId - An identifier that uniquely identifies a filter within a dashboard, analysis, or template.

$sel:column:NumericRangeFilter', numericRangeFilter_column - The column that the filter is applied to.

$sel:nullOption:NumericRangeFilter', numericRangeFilter_nullOption - 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.

numericRangeFilter_includeMaximum :: Lens' NumericRangeFilter (Maybe Bool) Source #

Determines whether the maximum value in the filter value range should be included in the filtered results.

numericRangeFilter_includeMinimum :: Lens' NumericRangeFilter (Maybe Bool) Source #

Determines whether the minimum value in the filter value range should be included in the filtered results.

numericRangeFilter_selectAllOptions :: Lens' NumericRangeFilter (Maybe NumericFilterSelectAllOptions) Source #

Select all of the values. Null is not the assigned value of select all.

  • FILTER_ALL_VALUES

numericRangeFilter_filterId :: Lens' NumericRangeFilter Text Source #

An identifier that uniquely identifies a filter within a dashboard, analysis, or template.

numericRangeFilter_column :: Lens' NumericRangeFilter ColumnIdentifier Source #

The column that the filter is applied to.

numericRangeFilter_nullOption :: Lens' NumericRangeFilter FilterNullOption Source #

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.