Struct aws_sdk_iotwireless::types::MetricQueryValue
source · #[non_exhaustive]pub struct MetricQueryValue {
pub min: Option<f64>,
pub max: Option<f64>,
pub sum: Option<f64>,
pub avg: Option<f64>,
pub std: Option<f64>,
pub p90: Option<f64>,
}Expand description
The aggregated values of the metric.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.min: Option<f64>The minimum of the values of the all data points collected during the period.
max: Option<f64>The maximum of the values of the all data points collected during the period.
sum: Option<f64>The sum of the values of the all data points collected during the period.
avg: Option<f64>The average of the values of the all data points collected during the period.
std: Option<f64>The standard deviation of the values of the all data points collected during the period.
p90: Option<f64>The 90th percentile of the values of the all data points collected during the period.
Implementations§
source§impl MetricQueryValue
impl MetricQueryValue
sourcepub fn min(&self) -> Option<f64>
pub fn min(&self) -> Option<f64>
The minimum of the values of the all data points collected during the period.
sourcepub fn max(&self) -> Option<f64>
pub fn max(&self) -> Option<f64>
The maximum of the values of the all data points collected during the period.
sourcepub fn sum(&self) -> Option<f64>
pub fn sum(&self) -> Option<f64>
The sum of the values of the all data points collected during the period.
sourcepub fn avg(&self) -> Option<f64>
pub fn avg(&self) -> Option<f64>
The average of the values of the all data points collected during the period.
source§impl MetricQueryValue
impl MetricQueryValue
sourcepub fn builder() -> MetricQueryValueBuilder
pub fn builder() -> MetricQueryValueBuilder
Creates a new builder-style object to manufacture MetricQueryValue.
Trait Implementations§
source§impl Clone for MetricQueryValue
impl Clone for MetricQueryValue
source§fn clone(&self) -> MetricQueryValue
fn clone(&self) -> MetricQueryValue
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for MetricQueryValue
impl Debug for MetricQueryValue
source§impl PartialEq for MetricQueryValue
impl PartialEq for MetricQueryValue
source§fn eq(&self, other: &MetricQueryValue) -> bool
fn eq(&self, other: &MetricQueryValue) -> bool
self and other values to be equal, and is used
by ==.