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

FilterListControl

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

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

interface FilterListControl {
CascadingControlConfiguration?: CascadingControlConfiguration | null;
DisplayOptions?: ListControlDisplayOptions | null;
FilterControlId: string;
SelectableValues?: FilterSelectableValues | null;
SourceFilterId: string;
Title: string;
Type?: SheetControlListType | null;
}

§Properties

§
CascadingControlConfiguration?: CascadingControlConfiguration | null
[src]

The values that are displayed in a control can be configured to only show values that are valid based on what's selected in other controls.

§
DisplayOptions?: ListControlDisplayOptions | null
[src]

The display options of a control.

§
FilterControlId: string
[src]

The ID of the FilterListControl.

§
SelectableValues?: FilterSelectableValues | null
[src]

A list of selectable values that are used in a control.

§
SourceFilterId: string
[src]

The source filter ID of the FilterListControl.

§
Title: string
[src]

The title of the FilterListControl.

§

The type of FilterListControl. Choose one of the following options:

  • MULTI_SELECT: The user can select multiple entries from the list.
  • SINGLE_SELECT: The user can select a single entry from the list.