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

ParameterControl

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

The control of a parameter that users can interact with in 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 ParameterControl {
DateTimePicker?: ParameterDateTimePickerControl | null;
Dropdown?: ParameterDropDownControl | null;
List?: ParameterListControl | null;
Slider?: ParameterSliderControl | null;
TextArea?: ParameterTextAreaControl | null;
TextField?: ParameterTextFieldControl | null;
}

§Properties

§
DateTimePicker?: ParameterDateTimePickerControl | null
[src]

A control from a date parameter that specifies date and time.

§

A control to display a list with buttons or boxes that are used to select either a single value or multiple values.

§

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

§

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

§

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