Struct aws_sdk_mwaa::types::builders::StatisticSetBuilder
source · #[non_exhaustive]pub struct StatisticSetBuilder { /* private fields */ }Expand description
A builder for StatisticSet.
Implementations§
source§impl StatisticSetBuilder
impl StatisticSetBuilder
sourcepub fn sample_count(self, input: i32) -> Self
pub fn sample_count(self, input: i32) -> Self
Internal only. The number of samples used for the statistic set.
sourcepub fn set_sample_count(self, input: Option<i32>) -> Self
pub fn set_sample_count(self, input: Option<i32>) -> Self
Internal only. The number of samples used for the statistic set.
sourcepub fn get_sample_count(&self) -> &Option<i32>
pub fn get_sample_count(&self) -> &Option<i32>
Internal only. The number of samples used for the statistic set.
sourcepub fn set_sum(self, input: Option<f64>) -> Self
pub fn set_sum(self, input: Option<f64>) -> Self
Internal only. The sum of values for the sample set.
sourcepub fn set_minimum(self, input: Option<f64>) -> Self
pub fn set_minimum(self, input: Option<f64>) -> Self
Internal only. The minimum value of the sample set.
sourcepub fn get_minimum(&self) -> &Option<f64>
pub fn get_minimum(&self) -> &Option<f64>
Internal only. The minimum value of the sample set.
sourcepub fn set_maximum(self, input: Option<f64>) -> Self
pub fn set_maximum(self, input: Option<f64>) -> Self
Internal only. The maximum value of the sample set.
sourcepub fn get_maximum(&self) -> &Option<f64>
pub fn get_maximum(&self) -> &Option<f64>
Internal only. The maximum value of the sample set.
sourcepub fn build(self) -> StatisticSet
pub fn build(self) -> StatisticSet
Consumes the builder and constructs a StatisticSet.
Trait Implementations§
source§impl Clone for StatisticSetBuilder
impl Clone for StatisticSetBuilder
source§fn clone(&self) -> StatisticSetBuilder
fn clone(&self) -> StatisticSetBuilder
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 StatisticSetBuilder
impl Debug for StatisticSetBuilder
source§impl Default for StatisticSetBuilder
impl Default for StatisticSetBuilder
source§fn default() -> StatisticSetBuilder
fn default() -> StatisticSetBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<StatisticSetBuilder> for StatisticSetBuilder
impl PartialEq<StatisticSetBuilder> for StatisticSetBuilder
source§fn eq(&self, other: &StatisticSetBuilder) -> bool
fn eq(&self, other: &StatisticSetBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StatisticSetBuilder
Auto Trait Implementations§
impl RefUnwindSafe for StatisticSetBuilder
impl Send for StatisticSetBuilder
impl Sync for StatisticSetBuilder
impl Unpin for StatisticSetBuilder
impl UnwindSafe for StatisticSetBuilder
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