Class: Aws::Shield::Types::AttackVolume
- Inherits:
-
Struct
- Object
- Struct
- Aws::Shield::Types::AttackVolume
- Defined in:
- gems/aws-sdk-shield/lib/aws-sdk-shield/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bits_per_second ⇒ Types::AttackVolumeStatistics
A statistics object that uses bits per second as the unit.
-
#packets_per_second ⇒ Types::AttackVolumeStatistics
A statistics object that uses packets per second as the unit.
-
#requests_per_second ⇒ Types::AttackVolumeStatistics
A statistics object that uses requests per second as the unit.
Instance Attribute Details
#bits_per_second ⇒ Types::AttackVolumeStatistics
A statistics object that uses bits per second as the unit. This is included for network level attacks.
414 415 416 417 418 419 420 |
# File 'gems/aws-sdk-shield/lib/aws-sdk-shield/types.rb', line 414 class AttackVolume < Struct.new( :bits_per_second, :packets_per_second, :requests_per_second) SENSITIVE = [] include Aws::Structure end |
#packets_per_second ⇒ Types::AttackVolumeStatistics
A statistics object that uses packets per second as the unit. This is included for network level attacks.
414 415 416 417 418 419 420 |
# File 'gems/aws-sdk-shield/lib/aws-sdk-shield/types.rb', line 414 class AttackVolume < Struct.new( :bits_per_second, :packets_per_second, :requests_per_second) SENSITIVE = [] include Aws::Structure end |
#requests_per_second ⇒ Types::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.
414 415 416 417 418 419 420 |
# File 'gems/aws-sdk-shield/lib/aws-sdk-shield/types.rb', line 414 class AttackVolume < Struct.new( :bits_per_second, :packets_per_second, :requests_per_second) SENSITIVE = [] include Aws::Structure end |