Class: Aws::DeviceFarm::Types::CPU
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::DeviceFarm::Types::CPU
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-devicefarm/types.rb
 
Overview
Represents the amount of CPU that an app is using on a physical device. Does not represent system-wide CPU usage.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #architecture  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The CPU’s architecture (for example, x86 or ARM).
 - 
  
    
      #clock  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The clock speed of the device’s CPU, expressed in hertz (Hz).
 - 
  
    
      #frequency  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The CPU’s frequency.
 
Instance Attribute Details
#architecture ⇒ String
The CPU’s architecture (for example, x86 or ARM).
      192 193 194 195 196 197 198  | 
    
      # File 'lib/aws-sdk-devicefarm/types.rb', line 192 class CPU < Struct.new( :frequency, :architecture, :clock) SENSITIVE = [] include Aws::Structure end  | 
  
#clock ⇒ Float
The clock speed of the device’s CPU, expressed in hertz (Hz). For example, a 1.2 GHz CPU is expressed as 1200000000.
      192 193 194 195 196 197 198  | 
    
      # File 'lib/aws-sdk-devicefarm/types.rb', line 192 class CPU < Struct.new( :frequency, :architecture, :clock) SENSITIVE = [] include Aws::Structure end  |