Class: Aws::EC2::Types::InstanceCapacity
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::InstanceCapacity
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Information about the number of instances that can be launched onto the Dedicated Host.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #available_capacity  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of instances that can be launched onto the Dedicated Host based on the host’s available capacity.
 - 
  
    
      #instance_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The instance type supported by the Dedicated Host.
 - 
  
    
      #total_capacity  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The total number of instances that can be launched onto the Dedicated Host if there are no instances running on it.
 
Instance Attribute Details
#available_capacity ⇒ Integer
The number of instances that can be launched onto the Dedicated Host based on the host’s available capacity.
      42863 42864 42865 42866 42867 42868 42869  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 42863 class InstanceCapacity < Struct.new( :available_capacity, :instance_type, :total_capacity) SENSITIVE = [] include Aws::Structure end  | 
  
#instance_type ⇒ String
The instance type supported by the Dedicated Host.
      42863 42864 42865 42866 42867 42868 42869  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 42863 class InstanceCapacity < Struct.new( :available_capacity, :instance_type, :total_capacity) SENSITIVE = [] include Aws::Structure end  | 
  
#total_capacity ⇒ Integer
The total number of instances that can be launched onto the Dedicated Host if there are no instances running on it.
      42863 42864 42865 42866 42867 42868 42869  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 42863 class InstanceCapacity < Struct.new( :available_capacity, :instance_type, :total_capacity) SENSITIVE = [] include Aws::Structure end  |