Dashboard Parameter Control Args
data class DashboardParameterControlArgs(val dateTimePicker: Output<DashboardParameterDateTimePickerControlArgs>? = null, val dropdown: Output<DashboardParameterDropDownControlArgs>? = null, val list: Output<DashboardParameterListControlArgs>? = null, val slider: Output<DashboardParameterSliderControlArgs>? = null, val textArea: Output<DashboardParameterTextAreaControlArgs>? = null, val textField: Output<DashboardParameterTextFieldControlArgs>? = null) : ConvertibleToJava<DashboardParameterControlArgs>
Constructors
Link copied to clipboard
constructor(dateTimePicker: Output<DashboardParameterDateTimePickerControlArgs>? = null, dropdown: Output<DashboardParameterDropDownControlArgs>? = null, list: Output<DashboardParameterListControlArgs>? = null, slider: Output<DashboardParameterSliderControlArgs>? = null, textArea: Output<DashboardParameterTextAreaControlArgs>? = null, textField: Output<DashboardParameterTextFieldControlArgs>? = null)
Properties
Link copied to clipboard
A control from a date parameter that specifies date and time.
Link copied to clipboard
A control to display a dropdown list with buttons that are used to select a single value.
Link copied to clipboard
A control to display a list with buttons or boxes that are used to select either a single value or multiple values.
Link copied to clipboard
A control to display a horizontal toggle bar. This is used to change a value by sliding the toggle.
Link copied to clipboard
A control to display a text box that is used to enter multiple entries.
Link copied to clipboard
A control to display a text box that is used to enter a single entry.