Struct aws_sdk_quicksight::model::ParameterControl
source · #[non_exhaustive]pub struct ParameterControl { /* private fields */ }
Expand description
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.
Implementations§
source§impl ParameterControl
impl ParameterControl
sourcepub fn date_time_picker(&self) -> Option<&ParameterDateTimePickerControl>
pub fn date_time_picker(&self) -> Option<&ParameterDateTimePickerControl>
A control from a date parameter that specifies date and time.
sourcepub fn list(&self) -> Option<&ParameterListControl>
pub fn list(&self) -> Option<&ParameterListControl>
A control to display a list with buttons or boxes that are used to select either a single value or multiple values.
sourcepub fn dropdown(&self) -> Option<&ParameterDropDownControl>
pub fn dropdown(&self) -> Option<&ParameterDropDownControl>
A control to display a dropdown list with buttons that are used to select a single value.
sourcepub fn text_field(&self) -> Option<&ParameterTextFieldControl>
pub fn text_field(&self) -> Option<&ParameterTextFieldControl>
A control to display a text box that is used to enter a single entry.
sourcepub fn text_area(&self) -> Option<&ParameterTextAreaControl>
pub fn text_area(&self) -> Option<&ParameterTextAreaControl>
A control to display a text box that is used to enter multiple entries.
sourcepub fn slider(&self) -> Option<&ParameterSliderControl>
pub fn slider(&self) -> Option<&ParameterSliderControl>
A control to display a horizontal toggle bar. This is used to change a value by sliding the toggle.
source§impl ParameterControl
impl ParameterControl
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ParameterControl
.
Trait Implementations§
source§impl Clone for ParameterControl
impl Clone for ParameterControl
source§fn clone(&self) -> ParameterControl
fn clone(&self) -> ParameterControl
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ParameterControl
impl Debug for ParameterControl
source§impl PartialEq<ParameterControl> for ParameterControl
impl PartialEq<ParameterControl> for ParameterControl
source§fn eq(&self, other: &ParameterControl) -> bool
fn eq(&self, other: &ParameterControl) -> bool
self
and other
values to be equal, and is used
by ==
.