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.
42340 42341 42342 42343 42344 42345 42346 |
# File 'lib/aws-sdk-ec2/types.rb', line 42340 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.
42340 42341 42342 42343 42344 42345 42346 |
# File 'lib/aws-sdk-ec2/types.rb', line 42340 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.
42340 42341 42342 42343 42344 42345 42346 |
# File 'lib/aws-sdk-ec2/types.rb', line 42340 class InstanceCapacity < Struct.new( :available_capacity, :instance_type, :total_capacity) SENSITIVE = [] include Aws::Structure end |