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

TimeRangeFilter

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

A TimeRangeFilter filters values that are between two specified values.

interface TimeRangeFilter {
ExcludePeriodConfiguration?: ExcludePeriodConfiguration | null;
FilterId: string;
IncludeMaximum?: boolean | null;
IncludeMinimum?: boolean | null;
NullOption: FilterNullOption;
RangeMaximumValue?: TimeRangeFilterValue | null;
RangeMinimumValue?: TimeRangeFilterValue | null;
TimeGranularity?: TimeGranularity | null;
}

§Properties

§

The column that the filter is applied to.

§
ExcludePeriodConfiguration?: ExcludePeriodConfiguration | null
[src]

The exclude period of the time range filter.

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

The maximum value for the filter value range.

§
RangeMinimumValue?: TimeRangeFilterValue | null
[src]

The minimum value for the filter value range.

§
TimeGranularity?: TimeGranularity | null
[src]

The level of time precision that is used to aggregate DateTime values.