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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#available_capacityInteger

The number of instances that can be launched onto the Dedicated Host based on the host's available capacity.

Returns:

  • (Integer)


39133
39134
39135
39136
39137
39138
39139
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 39133

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

#instance_typeString

The instance type supported by the Dedicated Host.

Returns:

  • (String)


39133
39134
39135
39136
39137
39138
39139
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 39133

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

#total_capacityInteger

The total number of instances that can be launched onto the Dedicated Host if there are no instances running on it.

Returns:

  • (Integer)


39133
39134
39135
39136
39137
39138
39139
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 39133

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