pub struct AnomalyDetector {
pub configuration: Option<AnomalyDetectorConfiguration>,
pub dimensions: Vec<Dimension>,
pub metric_characteristics: Option<MetricCharacteristics>,
pub metric_math_anomaly_detector: Option<MetricMathAnomalyDetector>,
pub metric_name: Option<String>,
pub namespace: Option<String>,
pub single_metric_anomaly_detector: Option<SingleMetricAnomalyDetector>,
pub stat: Option<String>,
pub state_value: Option<AnomalyDetectorStateValue>,
}Expand description
CloudWatch AnomalyDetector.
Fields§
§configuration: Option<AnomalyDetectorConfiguration>§dimensions: Vec<Dimension>§metric_characteristics: Option<MetricCharacteristics>§metric_math_anomaly_detector: Option<MetricMathAnomalyDetector>§metric_name: Option<String>§namespace: Option<String>§single_metric_anomaly_detector: Option<SingleMetricAnomalyDetector>§stat: Option<String>§state_value: Option<AnomalyDetectorStateValue>Trait Implementations§
Source§impl Clone for AnomalyDetector
impl Clone for AnomalyDetector
Source§fn clone(&self) -> AnomalyDetector
fn clone(&self) -> AnomalyDetector
Returns a duplicate 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 AnomalyDetector
impl Debug for AnomalyDetector
Source§impl Default for AnomalyDetector
impl Default for AnomalyDetector
Source§fn default() -> AnomalyDetector
fn default() -> AnomalyDetector
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnomalyDetector
impl<'de> Deserialize<'de> for AnomalyDetector
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AnomalyDetector
impl RefUnwindSafe for AnomalyDetector
impl Send for AnomalyDetector
impl Sync for AnomalyDetector
impl Unpin for AnomalyDetector
impl UnsafeUnpin for AnomalyDetector
impl UnwindSafe for AnomalyDetector
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