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

CustomFilterConfiguration

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

A custom filter that filters based on a single value. This filter can be partially matched.

interface CustomFilterConfiguration {
CategoryValue?: string | null;
NullOption: FilterNullOption;
ParameterName?: string | null;
SelectAllOptions?: CategoryFilterSelectAllOptions | null;
}

§Properties

§
CategoryValue?: string | null
[src]

The category value for the filter.

This field is mutually exclusive to ParameterName.

§

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.

This field is mutually exclusive to CategoryValue.

§
SelectAllOptions?: CategoryFilterSelectAllOptions | null
[src]

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

  • FILTER_ALL_VALUES