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.
46033 46034 46035 46036 46037 46038 46039 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 46033 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.
46033 46034 46035 46036 46037 46038 46039 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 46033 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.
46033 46034 46035 46036 46037 46038 46039 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 46033 class InstanceCapacity < Struct.new( :available_capacity, :instance_type, :total_capacity) SENSITIVE = [] include Aws::Structure end |