Struct aws_sdk_iot::types::builders::StatisticsBuilder
source · #[non_exhaustive]pub struct StatisticsBuilder { /* private fields */ }
Expand description
A builder for Statistics
.
Implementations§
source§impl StatisticsBuilder
impl StatisticsBuilder
sourcepub fn count(self, input: i32) -> Self
pub fn count(self, input: i32) -> Self
The count of things that match the query string criteria and contain a valid aggregation field value.
sourcepub fn set_count(self, input: Option<i32>) -> Self
pub fn set_count(self, input: Option<i32>) -> Self
The count of things that match the query string criteria and contain a valid aggregation field value.
sourcepub fn get_count(&self) -> &Option<i32>
pub fn get_count(&self) -> &Option<i32>
The count of things that match the query string criteria and contain a valid aggregation field value.
sourcepub fn set_average(self, input: Option<f64>) -> Self
pub fn set_average(self, input: Option<f64>) -> Self
The average of the aggregated field values.
sourcepub fn get_average(&self) -> &Option<f64>
pub fn get_average(&self) -> &Option<f64>
The average of the aggregated field values.
sourcepub fn set_minimum(self, input: Option<f64>) -> Self
pub fn set_minimum(self, input: Option<f64>) -> Self
The minimum aggregated field value.
sourcepub fn get_minimum(&self) -> &Option<f64>
pub fn get_minimum(&self) -> &Option<f64>
The minimum aggregated field value.
sourcepub fn set_maximum(self, input: Option<f64>) -> Self
pub fn set_maximum(self, input: Option<f64>) -> Self
The maximum aggregated field value.
sourcepub fn get_maximum(&self) -> &Option<f64>
pub fn get_maximum(&self) -> &Option<f64>
The maximum aggregated field value.
sourcepub fn sum_of_squares(self, input: f64) -> Self
pub fn sum_of_squares(self, input: f64) -> Self
The sum of the squares of the aggregated field values.
sourcepub fn set_sum_of_squares(self, input: Option<f64>) -> Self
pub fn set_sum_of_squares(self, input: Option<f64>) -> Self
The sum of the squares of the aggregated field values.
sourcepub fn get_sum_of_squares(&self) -> &Option<f64>
pub fn get_sum_of_squares(&self) -> &Option<f64>
The sum of the squares of the aggregated field values.
sourcepub fn set_variance(self, input: Option<f64>) -> Self
pub fn set_variance(self, input: Option<f64>) -> Self
The variance of the aggregated field values.
sourcepub fn get_variance(&self) -> &Option<f64>
pub fn get_variance(&self) -> &Option<f64>
The variance of the aggregated field values.
sourcepub fn std_deviation(self, input: f64) -> Self
pub fn std_deviation(self, input: f64) -> Self
The standard deviation of the aggregated field values.
sourcepub fn set_std_deviation(self, input: Option<f64>) -> Self
pub fn set_std_deviation(self, input: Option<f64>) -> Self
The standard deviation of the aggregated field values.
sourcepub fn get_std_deviation(&self) -> &Option<f64>
pub fn get_std_deviation(&self) -> &Option<f64>
The standard deviation of the aggregated field values.
sourcepub fn build(self) -> Statistics
pub fn build(self) -> Statistics
Consumes the builder and constructs a Statistics
.
Trait Implementations§
source§impl Clone for StatisticsBuilder
impl Clone for StatisticsBuilder
source§fn clone(&self) -> StatisticsBuilder
fn clone(&self) -> StatisticsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for StatisticsBuilder
impl Debug for StatisticsBuilder
source§impl Default for StatisticsBuilder
impl Default for StatisticsBuilder
source§fn default() -> StatisticsBuilder
fn default() -> StatisticsBuilder
source§impl PartialEq for StatisticsBuilder
impl PartialEq for StatisticsBuilder
source§fn eq(&self, other: &StatisticsBuilder) -> bool
fn eq(&self, other: &StatisticsBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StatisticsBuilder
Auto Trait Implementations§
impl Freeze for StatisticsBuilder
impl RefUnwindSafe for StatisticsBuilder
impl Send for StatisticsBuilder
impl Sync for StatisticsBuilder
impl Unpin for StatisticsBuilder
impl UnwindSafe for StatisticsBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more