Struct aws_sdk_shield::model::AttackVolume [−][src]
#[non_exhaustive]pub struct AttackVolume {
pub bits_per_second: Option<AttackVolumeStatistics>,
pub packets_per_second: Option<AttackVolumeStatistics>,
pub requests_per_second: Option<AttackVolumeStatistics>,
}
Expand description
Information about the volume of attacks during the time period, included in an AttackStatisticsDataItem
. If the accompanying AttackCount
in the statistics object is zero, this setting might be empty.
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.bits_per_second: Option<AttackVolumeStatistics>
A statistics object that uses bits per second as the unit. This is included for network level attacks.
packets_per_second: Option<AttackVolumeStatistics>
A statistics object that uses packets per second as the unit. This is included for network level attacks.
requests_per_second: Option<AttackVolumeStatistics>
A statistics object that uses requests per second as the unit. This is included for application level attacks, and is only available for accounts that are subscribed to Shield Advanced.
Implementations
A statistics object that uses bits per second as the unit. This is included for network level attacks.
A statistics object that uses packets per second as the unit. This is included for network level attacks.
A statistics object that uses requests per second as the unit. This is included for application level attacks, and is only available for accounts that are subscribed to Shield Advanced.
Creates a new builder-style object to manufacture AttackVolume
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for AttackVolume
impl Send for AttackVolume
impl Sync for AttackVolume
impl Unpin for AttackVolume
impl UnwindSafe for AttackVolume
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more