Class: Aws::Shield::Types::AttackStatisticsDataItem
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Shield::Types::AttackStatisticsDataItem
 
 
- 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
- 
  
    
      #attack_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of attacks detected during the time period.
 - 
  
    
      #attack_volume  ⇒ Types::AttackVolume 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Information about the volume of attacks during the time period.
 
Instance Attribute Details
#attack_count ⇒ Integer
The number of attacks detected during the time period. This is always present, but might be zero.
      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_volume ⇒ Types::AttackVolume
Information about the volume of attacks during the time period. If
the accompanying AttackCount is zero, this setting might be empty.
      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  |