Class: Aws::EC2::Types::InstanceCapacity

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Information about the instance type that the Dedicated Host supports.

Instance Attribute Summary collapse

Instance Attribute Details

#available_capacityInteger

The number of instances that can still be launched onto the Dedicated Host.

Returns:

  • (Integer)


22423
22424
22425
22426
22427
22428
# File 'lib/aws-sdk-ec2/types.rb', line 22423

class InstanceCapacity < Struct.new(
  :available_capacity,
  :instance_type,
  :total_capacity)
  include Aws::Structure
end

#instance_typeString

The instance type size supported by the Dedicated Host.

Returns:

  • (String)


22423
22424
22425
22426
22427
22428
# File 'lib/aws-sdk-ec2/types.rb', line 22423

class InstanceCapacity < Struct.new(
  :available_capacity,
  :instance_type,
  :total_capacity)
  include Aws::Structure
end

#total_capacityInteger

The total number of instances that can be launched onto the Dedicated Host.

Returns:

  • (Integer)


22423
22424
22425
22426
22427
22428
# File 'lib/aws-sdk-ec2/types.rb', line 22423

class InstanceCapacity < Struct.new(
  :available_capacity,
  :instance_type,
  :total_capacity)
  include Aws::Structure
end