Struct aws_sdk_iot::model::statistics::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for Statistics
.
Implementations§
source§impl Builder
impl Builder
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
.