Struct aws_sdk_quicksight::model::TimeRangeFilter
source · #[non_exhaustive]pub struct TimeRangeFilter { /* private fields */ }
Expand description
A TimeRangeFilter
filters values that are between two specified values.
Implementations§
source§impl TimeRangeFilter
impl TimeRangeFilter
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_value(&self) -> Option<&TimeRangeFilterValue>
pub fn range_minimum_value(&self) -> Option<&TimeRangeFilterValue>
The minimum value for the filter value range.
sourcepub fn range_maximum_value(&self) -> Option<&TimeRangeFilterValue>
pub fn range_maximum_value(&self) -> Option<&TimeRangeFilterValue>
The maximum value for the filter value range.
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.
sourcepub fn exclude_period_configuration(
&self
) -> Option<&ExcludePeriodConfiguration>
pub fn exclude_period_configuration(
&self
) -> Option<&ExcludePeriodConfiguration>
The exclude period of the time range filter.
sourcepub fn time_granularity(&self) -> Option<&TimeGranularity>
pub fn time_granularity(&self) -> Option<&TimeGranularity>
The level of time precision that is used to aggregate DateTime
values.
source§impl TimeRangeFilter
impl TimeRangeFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TimeRangeFilter
.
Trait Implementations§
source§impl Clone for TimeRangeFilter
impl Clone for TimeRangeFilter
source§fn clone(&self) -> TimeRangeFilter
fn clone(&self) -> TimeRangeFilter
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TimeRangeFilter
impl Debug for TimeRangeFilter
source§impl PartialEq<TimeRangeFilter> for TimeRangeFilter
impl PartialEq<TimeRangeFilter> for TimeRangeFilter
source§fn eq(&self, other: &TimeRangeFilter) -> bool
fn eq(&self, other: &TimeRangeFilter) -> bool
self
and other
values to be equal, and is used
by ==
.