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

NumericEqualityFilter

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

A NumericEqualityFilter filters values that are equal to the specified value.

interface NumericEqualityFilter {
AggregationFunction?: AggregationFunction | null;
FilterId: string;
NullOption: FilterNullOption;
ParameterName?: string | null;
SelectAllOptions?: NumericFilterSelectAllOptions | null;
Value?: number | 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.

§

The match operator that is used to determine if a filter should be applied.

§

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.
§
ParameterName?: string | null
[src]

The parameter whose value should be used for the filter value.

§
SelectAllOptions?: NumericFilterSelectAllOptions | null
[src]

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

  • FILTER_ALL_VALUES
    
§
Value?: number | null
[src]

The input value.