Struct rusoto_shield::SubResourceSummary[][src]

pub struct SubResourceSummary {
    pub attack_vectors: Option<Vec<SummarizedAttackVector>>,
    pub counters: Option<Vec<SummarizedCounter>>,
    pub id: Option<String>,
    pub type_: Option<String>,
}

The attack information for the specified SubResource.

Fields

The list of attack types and associated counters.

The counters that describe the details of the attack.

The unique identifier (ID) of the SubResource.

The SubResource type.

Trait Implementations

impl Default for SubResourceSummary
[src]

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

impl Debug for SubResourceSummary
[src]

Formats the value using the given formatter. Read more

impl Clone for SubResourceSummary
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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