Struct rusoto_shield::SummarizedCounter[][src]

pub struct SummarizedCounter {
    pub average: Option<f64>,
    pub max: Option<f64>,
    pub n: Option<i64>,
    pub name: Option<String>,
    pub sum: Option<f64>,
    pub unit: Option<String>,
}

The counter that describes a DDoS attack.

Fields

The average value of the counter for a specified time period.

The maximum value of the counter for a specified time period.

The number of counters for a specified time period.

The counter name.

The total of counter values for a specified time period.

The unit of the counters.

Trait Implementations

impl Default for SummarizedCounter
[src]

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

impl Debug for SummarizedCounter
[src]

Formats the value using the given formatter. Read more

impl Clone for SummarizedCounter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SummarizedCounter
[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