Class: Aws::ConfigService::Types::AggregateConformancePackComplianceCount
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ConfigService::Types::AggregateConformancePackComplianceCount
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-configservice/types.rb
 
Overview
The number of conformance packs that are compliant and noncompliant.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #compliant_conformance_pack_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Number of compliant conformance packs.
 - 
  
    
      #non_compliant_conformance_pack_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Number of noncompliant conformance packs.
 
Instance Attribute Details
#compliant_conformance_pack_count ⇒ Integer
Number of compliant conformance packs.
      190 191 192 193 194 195  | 
    
      # File 'lib/aws-sdk-configservice/types.rb', line 190 class AggregateConformancePackComplianceCount < Struct.new( :compliant_conformance_pack_count, :non_compliant_conformance_pack_count) SENSITIVE = [] include Aws::Structure end  | 
  
#non_compliant_conformance_pack_count ⇒ Integer
Number of noncompliant conformance packs.
      190 191 192 193 194 195  | 
    
      # File 'lib/aws-sdk-configservice/types.rb', line 190 class AggregateConformancePackComplianceCount < Struct.new( :compliant_conformance_pack_count, :non_compliant_conformance_pack_count) SENSITIVE = [] include Aws::Structure end  |