Struct aws_sdk_quicksight::model::NumericRangeFilter
source · #[non_exhaustive]pub struct NumericRangeFilter { /* private fields */ }
Expand description
A NumericRangeFilter
filters values that are within the value range.
Implementations§
source§impl NumericRangeFilter
impl NumericRangeFilter
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 include_minimum(&self) -> Option<bool>
pub fn include_minimum(&self) -> Option<bool>
Determines whether the minimum value in the filter value range should be included in the filtered results.
sourcepub fn include_maximum(&self) -> Option<bool>
pub fn include_maximum(&self) -> Option<bool>
Determines whether the maximum value in the filter value range should be included in the filtered results.
sourcepub fn range_minimum(&self) -> Option<&NumericRangeFilterValue>
pub fn range_minimum(&self) -> Option<&NumericRangeFilterValue>
The minimum value for the filter value range.
sourcepub fn range_maximum(&self) -> Option<&NumericRangeFilterValue>
pub fn range_maximum(&self) -> Option<&NumericRangeFilterValue>
The maximum value for the filter value range.
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 aggregation_function(&self) -> Option<&AggregationFunction>
pub fn aggregation_function(&self) -> Option<&AggregationFunction>
The aggregation function of the filter.
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 NumericRangeFilter
impl NumericRangeFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture NumericRangeFilter
.
Trait Implementations§
source§impl Clone for NumericRangeFilter
impl Clone for NumericRangeFilter
source§fn clone(&self) -> NumericRangeFilter
fn clone(&self) -> NumericRangeFilter
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for NumericRangeFilter
impl Debug for NumericRangeFilter
source§impl PartialEq<NumericRangeFilter> for NumericRangeFilter
impl PartialEq<NumericRangeFilter> for NumericRangeFilter
source§fn eq(&self, other: &NumericRangeFilter) -> bool
fn eq(&self, other: &NumericRangeFilter) -> bool
self
and other
values to be equal, and is used
by ==
.