Struct rusoto_shield::SummarizedAttackVector[][src]

pub struct SummarizedAttackVector {
    pub vector_counters: Option<Vec<SummarizedCounter>>,
    pub vector_type: String,
}

A summary of information about the attack.

Fields

The list of counters that describe the details of the attack.

The attack type, for example, SNMP reflection or SYN flood.

Trait Implementations

impl Default for SummarizedAttackVector
[src]

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

impl Debug for SummarizedAttackVector
[src]

Formats the value using the given formatter. Read more

impl Clone for SummarizedAttackVector
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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