Struct rusoto_shield::AttackSummary[][src]

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

The unique identifier (ID) of the attack.

The list of attacks for a specified time period.

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

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

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

Trait Implementations

impl Default for AttackSummary
[src]

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

impl Debug for AttackSummary
[src]

Formats the value using the given formatter. Read more

impl Clone for AttackSummary
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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