Class: Aws::EC2::Types::HostProperties
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::HostProperties
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Describes the properties of a Dedicated Host.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #cores  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of cores on the Dedicated Host.
 - 
  
    
      #instance_family  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The instance family supported by the Dedicated Host.
 - 
  
    
      #instance_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The instance type supported by the Dedicated Host.
 - 
  
    
      #sockets  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of sockets on the Dedicated Host.
 - 
  
    
      #total_v_cpus  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The total number of vCPUs on the Dedicated Host.
 
Instance Attribute Details
#cores ⇒ Integer
The number of cores on the Dedicated Host.
      39901 39902 39903 39904 39905 39906 39907 39908 39909  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 39901 class HostProperties < Struct.new( :cores, :instance_type, :instance_family, :sockets, :total_v_cpus) SENSITIVE = [] include Aws::Structure end  | 
  
#instance_family ⇒ String
The instance family supported by the Dedicated Host. For example, ‘m5`.
      39901 39902 39903 39904 39905 39906 39907 39908 39909  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 39901 class HostProperties < Struct.new( :cores, :instance_type, :instance_family, :sockets, :total_v_cpus) SENSITIVE = [] include Aws::Structure end  | 
  
#instance_type ⇒ String
The instance type supported by the Dedicated Host. For example, ‘m5.large`. If the host supports multiple instance types, no instanceType is returned.
      39901 39902 39903 39904 39905 39906 39907 39908 39909  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 39901 class HostProperties < Struct.new( :cores, :instance_type, :instance_family, :sockets, :total_v_cpus) SENSITIVE = [] include Aws::Structure end  | 
  
#sockets ⇒ Integer
The number of sockets on the Dedicated Host.
      39901 39902 39903 39904 39905 39906 39907 39908 39909  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 39901 class HostProperties < Struct.new( :cores, :instance_type, :instance_family, :sockets, :total_v_cpus) SENSITIVE = [] include Aws::Structure end  | 
  
#total_v_cpus ⇒ Integer
The total number of vCPUs on the Dedicated Host.
      39901 39902 39903 39904 39905 39906 39907 39908 39909  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 39901 class HostProperties < Struct.new( :cores, :instance_type, :instance_family, :sockets, :total_v_cpus) SENSITIVE = [] include Aws::Structure end  |