Class: Aws::Drs::Types::CPU

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb

Overview

Information about a server's CPU.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#coresInteger

The number of CPU cores.

Returns:

  • (Integer)


85
86
87
88
89
90
# File 'gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb', line 85

class CPU < Struct.new(
  :cores,
  :model_name)
  SENSITIVE = []
  include Aws::Structure
end

#model_nameString

The model name of the CPU.

Returns:

  • (String)


85
86
87
88
89
90
# File 'gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb', line 85

class CPU < Struct.new(
  :cores,
  :model_name)
  SENSITIVE = []
  include Aws::Structure
end