Class: Aws::IoT::Types::TaskStatisticsForAuditCheck
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::TaskStatisticsForAuditCheck
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
Provides summary counts of how many tasks for findings are in a particular state. This information is included in the response from DescribeAuditMitigationActionsTask.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #canceled_findings_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of findings to which the mitigation action task was canceled when applied.
 - 
  
    
      #failed_findings_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of findings for which at least one of the actions failed when applied.
 - 
  
    
      #skipped_findings_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of findings skipped because of filter conditions provided in the parameters to the command.
 - 
  
    
      #succeeded_findings_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of findings for which all mitigation actions succeeded when applied.
 - 
  
    
      #total_findings_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The total number of findings to which a task is being applied.
 
Instance Attribute Details
#canceled_findings_count ⇒ Integer
The number of findings to which the mitigation action task was canceled when applied.
      14474 14475 14476 14477 14478 14479 14480 14481 14482  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 14474 class TaskStatisticsForAuditCheck < Struct.new( :total_findings_count, :failed_findings_count, :succeeded_findings_count, :skipped_findings_count, :canceled_findings_count) SENSITIVE = [] include Aws::Structure end  | 
  
#failed_findings_count ⇒ Integer
The number of findings for which at least one of the actions failed when applied.
      14474 14475 14476 14477 14478 14479 14480 14481 14482  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 14474 class TaskStatisticsForAuditCheck < Struct.new( :total_findings_count, :failed_findings_count, :succeeded_findings_count, :skipped_findings_count, :canceled_findings_count) SENSITIVE = [] include Aws::Structure end  | 
  
#skipped_findings_count ⇒ Integer
The number of findings skipped because of filter conditions provided in the parameters to the command.
      14474 14475 14476 14477 14478 14479 14480 14481 14482  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 14474 class TaskStatisticsForAuditCheck < Struct.new( :total_findings_count, :failed_findings_count, :succeeded_findings_count, :skipped_findings_count, :canceled_findings_count) SENSITIVE = [] include Aws::Structure end  | 
  
#succeeded_findings_count ⇒ Integer
The number of findings for which all mitigation actions succeeded when applied.
      14474 14475 14476 14477 14478 14479 14480 14481 14482  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 14474 class TaskStatisticsForAuditCheck < Struct.new( :total_findings_count, :failed_findings_count, :succeeded_findings_count, :skipped_findings_count, :canceled_findings_count) SENSITIVE = [] include Aws::Structure end  | 
  
#total_findings_count ⇒ Integer
The total number of findings to which a task is being applied.
      14474 14475 14476 14477 14478 14479 14480 14481 14482  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 14474 class TaskStatisticsForAuditCheck < Struct.new( :total_findings_count, :failed_findings_count, :succeeded_findings_count, :skipped_findings_count, :canceled_findings_count) SENSITIVE = [] include Aws::Structure end  |