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 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 set_minimum(self, input: Option<f64>) -> Self
pub fn set_minimum(self, input: Option<f64>) -> Self
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 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 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 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 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
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 StatisticsBuilder
impl Debug for StatisticsBuilder
source§impl Default for StatisticsBuilder
impl Default for StatisticsBuilder
source§fn default() -> StatisticsBuilder
fn default() -> StatisticsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<StatisticsBuilder> for StatisticsBuilder
impl PartialEq<StatisticsBuilder> for StatisticsBuilder
source§fn eq(&self, other: &StatisticsBuilder) -> bool
fn eq(&self, other: &StatisticsBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.