[][src]Struct rusoto_cloudwatch::PutAnomalyDetectorInput

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

Fields

configuration: Option<AnomalyDetectorConfiguration>

The configuration specifies details about how the anomaly detection model is to be trained, including time ranges to exclude when training and updating the model. You can specify as many as 10 time ranges.

The configuration can also include the time zone to use for the metric.

dimensions: Option<Vec<Dimension>>

The metric dimensions to create the anomaly detection model for.

metric_name: String

The name of the metric to create the anomaly detection model for.

namespace: String

The namespace of the metric to create the anomaly detection model for.

stat: String

The statistic to use for the metric and the anomaly detection model.

Trait Implementations

impl Clone for PutAnomalyDetectorInput[src]

impl Debug for PutAnomalyDetectorInput[src]

impl Default for PutAnomalyDetectorInput[src]

impl PartialEq<PutAnomalyDetectorInput> for PutAnomalyDetectorInput[src]

impl StructuralPartialEq for PutAnomalyDetectorInput[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.