Class: Aws::Shield::Types::AttackStatisticsDataItem

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-shield/lib/aws-sdk-shield/types.rb

Overview

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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#attack_countInteger

The number of attacks detected during the time period. This is always present, but might be zero.

Returns:

  • (Integer)


300
301
302
303
304
305
# File 'gems/aws-sdk-shield/lib/aws-sdk-shield/types.rb', line 300

class AttackStatisticsDataItem < Struct.new(
  :attack_volume,
  :attack_count)
  SENSITIVE = []
  include Aws::Structure
end

#attack_volumeTypes::AttackVolume

Information about the volume of attacks during the time period. If the accompanying AttackCount is zero, this setting might be empty.

Returns:



300
301
302
303
304
305
# File 'gems/aws-sdk-shield/lib/aws-sdk-shield/types.rb', line 300

class AttackStatisticsDataItem < Struct.new(
  :attack_volume,
  :attack_count)
  SENSITIVE = []
  include Aws::Structure
end