[][src]Struct rusoto_iot::MetricDimension

pub struct MetricDimension {
    pub dimension_name: String,
    pub operator: Option<String>,
}

The dimension of a metric.

Fields

dimension_name: String

A unique identifier for the dimension.

operator: Option<String>

Defines how the dimensionValues of a dimension are interpreted. For example, for dimension type TOPIC_FILTER, the IN operator, a message will be counted only if its topic matches one of the topic filters. With NOT_IN operator, a message will be counted only if it doesn't match any of the topic filters. The operator is optional: if it's not provided (is null), it will be interpreted as IN.

Trait Implementations

impl Clone for MetricDimension[src]

impl Debug for MetricDimension[src]

impl Default for MetricDimension[src]

impl<'de> Deserialize<'de> for MetricDimension[src]

impl PartialEq<MetricDimension> for MetricDimension[src]

impl Serialize for MetricDimension[src]

impl StructuralPartialEq for MetricDimension[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> 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> Sealed<T> for T where
    T: ?Sized

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.