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.
42836 42837 42838 42839 42840 42841 42842 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 42836 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.
42836 42837 42838 42839 42840 42841 42842 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 42836 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.
42836 42837 42838 42839 42840 42841 42842 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 42836 class InstanceCapacity < Struct.new( :available_capacity, :instance_type, :total_capacity) SENSITIVE = [] include Aws::Structure end |