Struct aws_sdk_xray::model::ForecastStatistics
source · #[non_exhaustive]pub struct ForecastStatistics { /* private fields */ }
Expand description
The predicted high and low fault count. This is used to determine if a service has become anomalous and if an insight should be created.
Implementations§
source§impl ForecastStatistics
impl ForecastStatistics
sourcepub fn fault_count_high(&self) -> Option<i64>
pub fn fault_count_high(&self) -> Option<i64>
The upper limit of fault counts for a service.
sourcepub fn fault_count_low(&self) -> Option<i64>
pub fn fault_count_low(&self) -> Option<i64>
The lower limit of fault counts for a service.
source§impl ForecastStatistics
impl ForecastStatistics
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ForecastStatistics
.
Trait Implementations§
source§impl Clone for ForecastStatistics
impl Clone for ForecastStatistics
source§fn clone(&self) -> ForecastStatistics
fn clone(&self) -> ForecastStatistics
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 ForecastStatistics
impl Debug for ForecastStatistics
source§impl PartialEq<ForecastStatistics> for ForecastStatistics
impl PartialEq<ForecastStatistics> for ForecastStatistics
source§fn eq(&self, other: &ForecastStatistics) -> bool
fn eq(&self, other: &ForecastStatistics) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.