Struct aws_sdk_quicksight::model::FilterDropDownControl
source · #[non_exhaustive]pub struct FilterDropDownControl { /* private fields */ }
Expand description
A control to display a dropdown list with buttons that are used to select a single value.
Implementations§
source§impl FilterDropDownControl
impl FilterDropDownControl
sourcepub fn filter_control_id(&self) -> Option<&str>
pub fn filter_control_id(&self) -> Option<&str>
The ID of the FilterDropDownControl
.
sourcepub fn source_filter_id(&self) -> Option<&str>
pub fn source_filter_id(&self) -> Option<&str>
The source filter ID of the FilterDropDownControl
.
sourcepub fn display_options(&self) -> Option<&DropDownControlDisplayOptions>
pub fn display_options(&self) -> Option<&DropDownControlDisplayOptions>
The display options of the FilterDropDownControl
.
sourcepub fn type(&self) -> Option<&SheetControlListType>
pub fn type(&self) -> Option<&SheetControlListType>
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.
sourcepub fn selectable_values(&self) -> Option<&FilterSelectableValues>
pub fn selectable_values(&self) -> Option<&FilterSelectableValues>
A list of selectable values that are used in a control.
sourcepub fn cascading_control_configuration(
&self
) -> Option<&CascadingControlConfiguration>
pub fn cascading_control_configuration(
&self
) -> Option<&CascadingControlConfiguration>
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.
source§impl FilterDropDownControl
impl FilterDropDownControl
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture FilterDropDownControl
.
Trait Implementations§
source§impl Clone for FilterDropDownControl
impl Clone for FilterDropDownControl
source§fn clone(&self) -> FilterDropDownControl
fn clone(&self) -> FilterDropDownControl
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for FilterDropDownControl
impl Debug for FilterDropDownControl
source§impl PartialEq<FilterDropDownControl> for FilterDropDownControl
impl PartialEq<FilterDropDownControl> for FilterDropDownControl
source§fn eq(&self, other: &FilterDropDownControl) -> bool
fn eq(&self, other: &FilterDropDownControl) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.