[][src]Struct rusoto_cloudwatch::AnomalyDetector

pub struct AnomalyDetector {
    pub configuration: Option<AnomalyDetectorConfiguration>,
    pub dimensions: Option<Vec<Dimension>>,
    pub metric_name: Option<String>,
    pub namespace: Option<String>,
    pub stat: Option<String>,
    pub state_value: Option<String>,
}

An anomaly detection model associated with a particular CloudWatch metric and statistic. You can use the model to display a band of expected normal values when the metric is graphed.

Fields

configuration: Option<AnomalyDetectorConfiguration>

The configuration specifies details about how the anomaly detection model is to be trained, including time ranges to exclude from use for training the model, and the time zone to use for the metric.

dimensions: Option<Vec<Dimension>>

The metric dimensions associated with the anomaly detection model.

metric_name: Option<String>

The name of the metric associated with the anomaly detection model.

namespace: Option<String>

The namespace of the metric associated with the anomaly detection model.

stat: Option<String>

The statistic associated with the anomaly detection model.

state_value: Option<String>

The current status of the anomaly detector's training. The possible values are TRAINED | PENDING_TRAINING | TRAINED_INSUFFICIENT_DATA

Trait Implementations

impl Clone for AnomalyDetector[src]

impl Debug for AnomalyDetector[src]

impl Default for AnomalyDetector[src]

impl PartialEq<AnomalyDetector> for AnomalyDetector[src]

impl StructuralPartialEq for AnomalyDetector[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.