[][src]Struct rusoto_ssm::OpsAggregator

pub struct OpsAggregator {
    pub aggregator_type: Option<String>,
    pub aggregators: Option<Vec<OpsAggregator>>,
    pub attribute_name: Option<String>,
    pub filters: Option<Vec<OpsFilter>>,
    pub type_name: Option<String>,
    pub values: Option<HashMap<String, String>>,
}

One or more aggregators for viewing counts of OpsItems using different dimensions such as Source, CreatedTime, or Source and CreatedTime, to name a few.

Fields

aggregator_type: Option<String>

Either a Range or Count aggregator for limiting an OpsItem summary.

aggregators: Option<Vec<OpsAggregator>>

A nested aggregator for viewing counts of OpsItems.

attribute_name: Option<String>

The name of an OpsItem attribute on which to limit the count of OpsItems.

filters: Option<Vec<OpsFilter>>

The aggregator filters.

type_name: Option<String>

The data type name to use for viewing counts of OpsItems.

values: Option<HashMap<String, String>>

The aggregator value.

Trait Implementations

impl Clone for OpsAggregator[src]

impl Debug for OpsAggregator[src]

impl Default for OpsAggregator[src]

impl PartialEq<OpsAggregator> for OpsAggregator[src]

impl Serialize for OpsAggregator[src]

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