[][src]Struct rusoto_cloudwatch::DescribeAnomalyDetectorsInput

pub struct DescribeAnomalyDetectorsInput {
    pub dimensions: Option<Vec<Dimension>>,
    pub max_results: Option<i64>,
    pub metric_name: Option<String>,
    pub namespace: Option<String>,
    pub next_token: Option<String>,
}

Fields

dimensions: Option<Vec<Dimension>>

Limits the results to only the anomaly detection models that are associated with the specified metric dimensions. If there are multiple metrics that have these dimensions and have anomaly detection models associated, they're all returned.

max_results: Option<i64>

The maximum number of results to return in one operation. The maximum value that you can specify is 100.

To retrieve the remaining results, make another call with the returned NextToken value.

metric_name: Option<String>

Limits the results to only the anomaly detection models that are associated with the specified metric name. If there are multiple metrics with this name in different namespaces that have anomaly detection models, they're all returned.

namespace: Option<String>

Limits the results to only the anomaly detection models that are associated with the specified namespace.

next_token: Option<String>

Use the token returned by the previous operation to request the next page of results.

Trait Implementations

impl Clone for DescribeAnomalyDetectorsInput[src]

impl Debug for DescribeAnomalyDetectorsInput[src]

impl Default for DescribeAnomalyDetectorsInput[src]

impl PartialEq<DescribeAnomalyDetectorsInput> for DescribeAnomalyDetectorsInput[src]

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