Class: Aws::XRay::Types::RequestImpactStatistics
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::XRay::Types::RequestImpactStatistics
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-xray/types.rb
 
Overview
Statistics that describe how the incident has impacted a service.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #fault_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of requests that have resulted in a fault,.
 - 
  
    
      #ok_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of successful requests.
 - 
  
    
      #total_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The total number of requests to the service.
 
Instance Attribute Details
#fault_count ⇒ Integer
The number of requests that have resulted in a fault,
      2417 2418 2419 2420 2421 2422 2423  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 2417 class RequestImpactStatistics < Struct.new( :fault_count, :ok_count, :total_count) SENSITIVE = [] include Aws::Structure end  | 
  
#ok_count ⇒ Integer
The number of successful requests.
      2417 2418 2419 2420 2421 2422 2423  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 2417 class RequestImpactStatistics < Struct.new( :fault_count, :ok_count, :total_count) SENSITIVE = [] include Aws::Structure end  | 
  
#total_count ⇒ Integer
The total number of requests to the service.
      2417 2418 2419 2420 2421 2422 2423  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 2417 class RequestImpactStatistics < Struct.new( :fault_count, :ok_count, :total_count) SENSITIVE = [] include Aws::Structure end  |