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 ==
.