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

FilterControl

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

The control of a filter that is used to interact with a dashboard or an analysis.

This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

interface FilterControl {
DateTimePicker?: FilterDateTimePickerControl | null;
Dropdown?: FilterDropDownControl | null;
List?: FilterListControl | null;
RelativeDateTime?: FilterRelativeDateTimeControl | null;
Slider?: FilterSliderControl | null;
TextArea?: FilterTextAreaControl | null;
TextField?: FilterTextFieldControl | null;
}

§Properties

§
DateTimePicker?: FilterDateTimePickerControl | null
[src]

A control from a date filter that is used to specify date and time.

§

A control to display a list of buttons or boxes. This is used to select either a single value or multiple values.

§
RelativeDateTime?: FilterRelativeDateTimeControl | null
[src]

A control from a date filter that is used to specify the relative date.

§
Slider?: FilterSliderControl | null
[src]

A control to display a horizontal toggle bar. This is used to change a value by sliding the toggle.

§
TextArea?: FilterTextAreaControl | null
[src]

A control to display a text box that is used to enter multiple entries.

§
TextField?: FilterTextFieldControl | null
[src]

A control to display a text box that is used to enter a single entry.