Struct aws_sdk_iot::types::TermsAggregation
source · #[non_exhaustive]pub struct TermsAggregation {
pub max_buckets: i32,
}
Expand description
Performs an aggregation that will return a list of buckets. The list of buckets is a ranked list of the number of occurrences of an aggregation field value.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.max_buckets: i32
The number of buckets to return in the response. Default to 10.
Implementations§
source§impl TermsAggregation
impl TermsAggregation
sourcepub fn max_buckets(&self) -> i32
pub fn max_buckets(&self) -> i32
The number of buckets to return in the response. Default to 10.
source§impl TermsAggregation
impl TermsAggregation
sourcepub fn builder() -> TermsAggregationBuilder
pub fn builder() -> TermsAggregationBuilder
Creates a new builder-style object to manufacture TermsAggregation
.
Trait Implementations§
source§impl Clone for TermsAggregation
impl Clone for TermsAggregation
source§fn clone(&self) -> TermsAggregation
fn clone(&self) -> TermsAggregation
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 TermsAggregation
impl Debug for TermsAggregation
source§impl PartialEq<TermsAggregation> for TermsAggregation
impl PartialEq<TermsAggregation> for TermsAggregation
source§fn eq(&self, other: &TermsAggregation) -> bool
fn eq(&self, other: &TermsAggregation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TermsAggregation
Auto Trait Implementations§
impl RefUnwindSafe for TermsAggregation
impl Send for TermsAggregation
impl Sync for TermsAggregation
impl Unpin for TermsAggregation
impl UnwindSafe for TermsAggregation
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more