Class: Aws::EC2::Types::InstanceCapacity
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::EC2::Types::InstanceCapacity
 
- Defined in:
- gems/aws-sdk-ec2/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.
| 47013 47014 47015 47016 47017 47018 47019 | # File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 47013 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.
| 47013 47014 47015 47016 47017 47018 47019 | # File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 47013 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.
| 47013 47014 47015 47016 47017 47018 47019 | # File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 47013 class InstanceCapacity < Struct.new( :available_capacity, :instance_type, :total_capacity) SENSITIVE = [] include Aws::Structure end |