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

FilterDropDownControl

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

A control to display a dropdown list with buttons that are used to select a single value.

interface FilterDropDownControl {
CascadingControlConfiguration?: CascadingControlConfiguration | null;
DisplayOptions?: DropDownControlDisplayOptions | 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?: DropDownControlDisplayOptions | null
[src]

The display options of the FilterDropDownControl.

§
FilterControlId: string
[src]

The ID of the FilterDropDownControl.

§
SelectableValues?: FilterSelectableValues | null
[src]

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

§
SourceFilterId: string
[src]

The source filter ID of the FilterDropDownControl.

§
Title: string
[src]

The title of the FilterDropDownControl.

§

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

  • MULTI_SELECT: The user can select multiple entries from a dropdown menu.
  • SINGLE_SELECT: The user can select a single entry from a dropdown menu.