Class: Aws::EC2::Types::ProcessorInfo
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::ProcessorInfo
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Describes the processor used by the instance type.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #manufacturer  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The manufacturer of the processor.
 - 
  
    
      #supported_architectures  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The architectures supported by the instance type.
 - 
  
    
      #supported_features  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether the instance type supports AMD SEV-SNP.
 - 
  
    
      #sustained_clock_speed_in_ghz  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The speed of the processor, in GHz.
 
Instance Attribute Details
#manufacturer ⇒ String
The manufacturer of the processor.
      58421 58422 58423 58424 58425 58426 58427 58428  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 58421 class ProcessorInfo < Struct.new( :supported_architectures, :sustained_clock_speed_in_ghz, :supported_features, :manufacturer) SENSITIVE = [] include Aws::Structure end  | 
  
#supported_architectures ⇒ Array<String>
The architectures supported by the instance type.
      58421 58422 58423 58424 58425 58426 58427 58428  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 58421 class ProcessorInfo < Struct.new( :supported_architectures, :sustained_clock_speed_in_ghz, :supported_features, :manufacturer) SENSITIVE = [] include Aws::Structure end  | 
  
#supported_features ⇒ Array<String>
Indicates whether the instance type supports AMD SEV-SNP. If the request returns ‘amd-sev-snp`, AMD SEV-SNP is supported. Otherwise, it is not supported. For more information, see [ AMD SEV-SNP].
[1]: docs.aws.amazon.com/AWSEC2/latest/UserGuide/sev-snp.html
      58421 58422 58423 58424 58425 58426 58427 58428  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 58421 class ProcessorInfo < Struct.new( :supported_architectures, :sustained_clock_speed_in_ghz, :supported_features, :manufacturer) SENSITIVE = [] include Aws::Structure end  | 
  
#sustained_clock_speed_in_ghz ⇒ Float
The speed of the processor, in GHz.
      58421 58422 58423 58424 58425 58426 58427 58428  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 58421 class ProcessorInfo < Struct.new( :supported_architectures, :sustained_clock_speed_in_ghz, :supported_features, :manufacturer) SENSITIVE = [] include Aws::Structure end  |