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