Class: Aws::DeviceFarm::Types::CPU

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-devicefarm/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

Instance Attribute Details

#architectureString

The CPU's architecture (for example, x86 or ARM).

Returns:

  • (String)


206
207
208
209
210
211
212
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 206

class CPU < Struct.new(
  :frequency,
  :architecture,
  :clock)
  SENSITIVE = []
  include Aws::Structure
end

#clockFloat

The clock speed of the device's CPU, expressed in hertz (Hz). For example, a 1.2 GHz CPU is expressed as 1200000000.

Returns:

  • (Float)


206
207
208
209
210
211
212
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 206

class CPU < Struct.new(
  :frequency,
  :architecture,
  :clock)
  SENSITIVE = []
  include Aws::Structure
end

#frequencyString

The CPU's frequency.

Returns:

  • (String)


206
207
208
209
210
211
212
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 206

class CPU < Struct.new(
  :frequency,
  :architecture,
  :clock)
  SENSITIVE = []
  include Aws::Structure
end