Struct aws_sdk_shield::model::AttackProperty
source · [−]#[non_exhaustive]pub struct AttackProperty {
pub attack_layer: Option<AttackLayer>,
pub attack_property_identifier: Option<AttackPropertyIdentifier>,
pub top_contributors: Option<Vec<Contributor>>,
pub unit: Option<Unit>,
pub total: i64,
}
Expand description
Details of a Shield event. This is provided as part of an AttackDetail
.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.attack_layer: Option<AttackLayer>
The type of Shield event that was observed. NETWORK
indicates layer 3 and layer 4 events and APPLICATION
indicates layer 7 events.
For infrastructure layer events (L3 and L4 events), you can view metrics for top contributors in Amazon CloudWatch metrics. For more information, see Shield metrics and alarms in the WAF Developer Guide.
attack_property_identifier: Option<AttackPropertyIdentifier>
Defines the Shield event property information that is provided. The WORDPRESS_PINGBACK_REFLECTOR
and WORDPRESS_PINGBACK_SOURCE
values are valid only for WordPress reflective pingback events.
top_contributors: Option<Vec<Contributor>>
Contributor objects for the top five contributors to a Shield event. A contributor is a source of traffic that Shield Advanced identifies as responsible for some or all of an event.
unit: Option<Unit>
The unit used for the Contributor
Value
property.
total: i64
The total contributions made to this Shield event by all contributors.
Implementations
sourceimpl AttackProperty
impl AttackProperty
sourcepub fn attack_layer(&self) -> Option<&AttackLayer>
pub fn attack_layer(&self) -> Option<&AttackLayer>
The type of Shield event that was observed. NETWORK
indicates layer 3 and layer 4 events and APPLICATION
indicates layer 7 events.
For infrastructure layer events (L3 and L4 events), you can view metrics for top contributors in Amazon CloudWatch metrics. For more information, see Shield metrics and alarms in the WAF Developer Guide.
sourcepub fn attack_property_identifier(&self) -> Option<&AttackPropertyIdentifier>
pub fn attack_property_identifier(&self) -> Option<&AttackPropertyIdentifier>
Defines the Shield event property information that is provided. The WORDPRESS_PINGBACK_REFLECTOR
and WORDPRESS_PINGBACK_SOURCE
values are valid only for WordPress reflective pingback events.
sourcepub fn top_contributors(&self) -> Option<&[Contributor]>
pub fn top_contributors(&self) -> Option<&[Contributor]>
Contributor objects for the top five contributors to a Shield event. A contributor is a source of traffic that Shield Advanced identifies as responsible for some or all of an event.
sourceimpl AttackProperty
impl AttackProperty
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AttackProperty
Trait Implementations
sourceimpl Clone for AttackProperty
impl Clone for AttackProperty
sourcefn clone(&self) -> AttackProperty
fn clone(&self) -> AttackProperty
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AttackProperty
impl Debug for AttackProperty
sourceimpl PartialEq<AttackProperty> for AttackProperty
impl PartialEq<AttackProperty> for AttackProperty
sourcefn eq(&self, other: &AttackProperty) -> bool
fn eq(&self, other: &AttackProperty) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &AttackProperty) -> bool
fn ne(&self, other: &AttackProperty) -> bool
This method tests for !=
.
impl StructuralPartialEq for AttackProperty
Auto Trait Implementations
impl RefUnwindSafe for AttackProperty
impl Send for AttackProperty
impl Sync for AttackProperty
impl Unpin for AttackProperty
impl UnwindSafe for AttackProperty
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more