Struct aws_sdk_mwaa::types::StatisticSet
source · #[non_exhaustive]pub struct StatisticSet {
pub sample_count: Option<i32>,
pub sum: Option<f64>,
pub minimum: Option<f64>,
pub maximum: Option<f64>,
}Expand description
Internal only. Represents a set of statistics that describe a specific metric. To learn more about the metrics published to Amazon CloudWatch, see Amazon MWAA performance metrics in Amazon CloudWatch.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.sample_count: Option<i32>Internal only. The number of samples used for the statistic set.
sum: Option<f64>Internal only. The sum of values for the sample set.
minimum: Option<f64>Internal only. The minimum value of the sample set.
maximum: Option<f64>Internal only. The maximum value of the sample set.
Implementations§
source§impl StatisticSet
impl StatisticSet
sourcepub fn sample_count(&self) -> Option<i32>
pub fn sample_count(&self) -> Option<i32>
Internal only. The number of samples used for the statistic set.
source§impl StatisticSet
impl StatisticSet
sourcepub fn builder() -> StatisticSetBuilder
pub fn builder() -> StatisticSetBuilder
Creates a new builder-style object to manufacture StatisticSet.
Trait Implementations§
source§impl Clone for StatisticSet
impl Clone for StatisticSet
source§fn clone(&self) -> StatisticSet
fn clone(&self) -> StatisticSet
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 StatisticSet
impl Debug for StatisticSet
source§impl PartialEq<StatisticSet> for StatisticSet
impl PartialEq<StatisticSet> for StatisticSet
source§fn eq(&self, other: &StatisticSet) -> bool
fn eq(&self, other: &StatisticSet) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StatisticSet
Auto Trait Implementations§
impl RefUnwindSafe for StatisticSet
impl Send for StatisticSet
impl Sync for StatisticSet
impl Unpin for StatisticSet
impl UnwindSafe for StatisticSet
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
Mutably borrows from an owned value. Read more