Struct aws_sdk_quicksight::model::TopBottomFilter
source · #[non_exhaustive]pub struct TopBottomFilter { /* private fields */ }
Expand description
A TopBottomFilter
filters values that are at the top or the bottom.
Implementations§
source§impl TopBottomFilter
impl TopBottomFilter
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 limit(&self) -> Option<i32>
pub fn limit(&self) -> Option<i32>
The number of items to include in the top bottom filter results.
sourcepub fn aggregation_sort_configurations(
&self
) -> Option<&[AggregationSortConfiguration]>
pub fn aggregation_sort_configurations(
&self
) -> Option<&[AggregationSortConfiguration]>
The aggregation and sort configuration of the top bottom 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.
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.
source§impl TopBottomFilter
impl TopBottomFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TopBottomFilter
.
Trait Implementations§
source§impl Clone for TopBottomFilter
impl Clone for TopBottomFilter
source§fn clone(&self) -> TopBottomFilter
fn clone(&self) -> TopBottomFilter
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 TopBottomFilter
impl Debug for TopBottomFilter
source§impl PartialEq<TopBottomFilter> for TopBottomFilter
impl PartialEq<TopBottomFilter> for TopBottomFilter
source§fn eq(&self, other: &TopBottomFilter) -> bool
fn eq(&self, other: &TopBottomFilter) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.