[][src]Struct rusoto_shield::AttackSummary

pub struct AttackSummary {
    pub attack_id: Option<String>,
    pub attack_vectors: Option<Vec<AttackVectorDescription>>,
    pub end_time: Option<f64>,
    pub resource_arn: Option<String>,
    pub start_time: Option<f64>,
}

Summarizes all DDoS attacks for a specified time period.

Fields

attack_id: Option<String>

The unique identifier (ID) of the attack.

attack_vectors: Option<Vec<AttackVectorDescription>>

The list of attacks for a specified time period.

end_time: Option<f64>

The end time of the attack, in Unix time in seconds. For more information see timestamp.

resource_arn: Option<String>

The ARN (Amazon Resource Name) of the resource that was attacked.

start_time: Option<f64>

The start time of the attack, in Unix time in seconds. For more information see timestamp.

Trait Implementations

impl Clone for AttackSummary[src]

impl Debug for AttackSummary[src]

impl Default for AttackSummary[src]

impl<'de> Deserialize<'de> for AttackSummary[src]

impl PartialEq<AttackSummary> for AttackSummary[src]

impl StructuralPartialEq for AttackSummary[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.