Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

NumericRangeFilter

import type { NumericRangeFilter } from "https://aws-api.deno.dev/v0.4/services/quicksight.ts?docs=full";

A NumericRangeFilter filters values that are within the value range.

interface NumericRangeFilter {
AggregationFunction?: AggregationFunction | null;
FilterId: string;
IncludeMaximum?: boolean | null;
IncludeMinimum?: boolean | null;
NullOption: FilterNullOption;
RangeMaximum?: NumericRangeFilterValue | null;
RangeMinimum?: NumericRangeFilterValue | null;
SelectAllOptions?: NumericFilterSelectAllOptions | null;
}

§Properties

§
AggregationFunction?: AggregationFunction | null
[src]

The aggregation function of the filter.

§

The column that the filter is applied to.

§
FilterId: string
[src]

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

§
IncludeMaximum?: boolean | null
[src]

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

§
IncludeMinimum?: boolean | null
[src]

Determines 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.

  • 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.
§
RangeMaximum?: NumericRangeFilterValue | null
[src]

The maximum value for the filter value range.

§
RangeMinimum?: NumericRangeFilterValue | null
[src]

The minimum value for the filter value range.

§
SelectAllOptions?: NumericFilterSelectAllOptions | null
[src]

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

  • FILTER_ALL_VALUES