Struct aws_sdk_quicksight::model::NumericEqualityFilter
source · #[non_exhaustive]pub struct NumericEqualityFilter { /* private fields */ }
Expand description
A NumericEqualityFilter
filters values that are equal to the specified value.
Implementations§
source§impl NumericEqualityFilter
impl NumericEqualityFilter
sourcepub fn filter_id(&self) -> Option<&str>
pub fn filter_id(&self) -> Option<&str>
An identifier that uniquely identifies a filter within a dashboard, analysis, or template.
sourcepub fn column(&self) -> Option<&ColumnIdentifier>
pub fn column(&self) -> Option<&ColumnIdentifier>
The column that the filter is applied to.
sourcepub fn select_all_options(&self) -> Option<&NumericFilterSelectAllOptions>
pub fn select_all_options(&self) -> Option<&NumericFilterSelectAllOptions>
Select all of the values. Null is not the assigned value of select all.
-
FILTER_ALL_VALUES
sourcepub fn match_operator(&self) -> Option<&NumericEqualityMatchOperator>
pub fn match_operator(&self) -> Option<&NumericEqualityMatchOperator>
The match operator that is used to determine if a filter should be applied.
sourcepub fn aggregation_function(&self) -> Option<&AggregationFunction>
pub fn aggregation_function(&self) -> Option<&AggregationFunction>
The aggregation function of the filter.
sourcepub fn parameter_name(&self) -> Option<&str>
pub fn parameter_name(&self) -> Option<&str>
The parameter whose value should be used for the filter value.
sourcepub fn null_option(&self) -> Option<&FilterNullOption>
pub fn null_option(&self) -> Option<&FilterNullOption>
This option determines how null values should be treated when filtering data.
-
ALL_VALUES
: Include null values in filtered results. -
NULLS_ONLY
: Only include null values in filtered results. -
NON_NULLS_ONLY
: Exclude null values from filtered results.
source§impl NumericEqualityFilter
impl NumericEqualityFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture NumericEqualityFilter
.
Trait Implementations§
source§impl Clone for NumericEqualityFilter
impl Clone for NumericEqualityFilter
source§fn clone(&self) -> NumericEqualityFilter
fn clone(&self) -> NumericEqualityFilter
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for NumericEqualityFilter
impl Debug for NumericEqualityFilter
source§impl PartialEq<NumericEqualityFilter> for NumericEqualityFilter
impl PartialEq<NumericEqualityFilter> for NumericEqualityFilter
source§fn eq(&self, other: &NumericEqualityFilter) -> bool
fn eq(&self, other: &NumericEqualityFilter) -> bool
self
and other
values to be equal, and is used
by ==
.