Struct rusoto_shield::AttackProperty[][src]

pub struct AttackProperty {
    pub attack_layer: Option<String>,
    pub attack_property_identifier: Option<String>,
    pub top_contributors: Option<Vec<Contributor>>,
    pub total: Option<i64>,
    pub unit: Option<String>,
}

Details of the described attack.

Fields

The type of DDoS event that was observed. NETWORK indicates layer 3 and layer 4 events and APPLICATION indicates layer 7 events.

Defines the DDoS attack property information that is provided.

The array of Contributor objects that includes the top five contributors to an attack.

The total contributions made to this attack by all contributors, not just the five listed in the TopContributors list.

The unit of the Value of the contributions.

Trait Implementations

impl Default for AttackProperty
[src]

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

impl Debug for AttackProperty
[src]

Formats the value using the given formatter. Read more

impl Clone for AttackProperty
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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