Struct rusoto_health::EventAggregate[][src]

pub struct EventAggregate {
    pub aggregate_value: Option<String>,
    pub count: Option<i64>,
}

The number of events of each issue type. Returned by the DescribeEventAggregates operation.

Fields

The issue type for the associated count.

The number of events of the associated issue type.

Trait Implementations

impl Default for EventAggregate
[src]

Returns the "default value" for a type. Read more

impl Debug for EventAggregate
[src]

Formats the value using the given formatter. Read more

impl Clone for EventAggregate
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for EventAggregate
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations