Struct aws_sdk_shield::model::AttackStatisticsDataItem
source · [−]#[non_exhaustive]pub struct AttackStatisticsDataItem { /* private fields */ }
Expand description
A single attack statistics data record. This is returned by DescribeAttackStatistics
along with a time range indicating the time period that the attack statistics apply to.
Implementations
sourceimpl AttackStatisticsDataItem
impl AttackStatisticsDataItem
sourcepub fn attack_volume(&self) -> Option<&AttackVolume>
pub fn attack_volume(&self) -> Option<&AttackVolume>
Information about the volume of attacks during the time period. If the accompanying AttackCount
is zero, this setting might be empty.
sourcepub fn attack_count(&self) -> i64
pub fn attack_count(&self) -> i64
The number of attacks detected during the time period. This is always present, but might be zero.
sourceimpl AttackStatisticsDataItem
impl AttackStatisticsDataItem
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AttackStatisticsDataItem
.
Trait Implementations
sourceimpl Clone for AttackStatisticsDataItem
impl Clone for AttackStatisticsDataItem
sourcefn clone(&self) -> AttackStatisticsDataItem
fn clone(&self) -> AttackStatisticsDataItem
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 moresourceimpl Debug for AttackStatisticsDataItem
impl Debug for AttackStatisticsDataItem
sourceimpl PartialEq<AttackStatisticsDataItem> for AttackStatisticsDataItem
impl PartialEq<AttackStatisticsDataItem> for AttackStatisticsDataItem
sourcefn eq(&self, other: &AttackStatisticsDataItem) -> bool
fn eq(&self, other: &AttackStatisticsDataItem) -> bool
impl StructuralPartialEq for AttackStatisticsDataItem
Auto Trait Implementations
impl RefUnwindSafe for AttackStatisticsDataItem
impl Send for AttackStatisticsDataItem
impl Sync for AttackStatisticsDataItem
impl Unpin for AttackStatisticsDataItem
impl UnwindSafe for AttackStatisticsDataItem
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more