Class: Aws::EC2::Types::ActiveInstance

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

Overview

Describes a running instance in a Spot Fleet.

Instance Attribute Summary collapse

Instance Attribute Details

#instance_healthString

The health status of the instance. If the status of either the instance status check or the system status check is ‘impaired`, the health status of the instance is `unhealthy`. Otherwise, the health status is `healthy`.

Returns:

  • (String)


242
243
244
245
246
247
248
# File 'lib/aws-sdk-ec2/types.rb', line 242

class ActiveInstance < Struct.new(
  :instance_id,
  :instance_type,
  :spot_instance_request_id,
  :instance_health)
  include Aws::Structure
end

#instance_idString

The ID of the instance.

Returns:

  • (String)


242
243
244
245
246
247
248
# File 'lib/aws-sdk-ec2/types.rb', line 242

class ActiveInstance < Struct.new(
  :instance_id,
  :instance_type,
  :spot_instance_request_id,
  :instance_health)
  include Aws::Structure
end

#instance_typeString

The instance type.

Returns:

  • (String)


242
243
244
245
246
247
248
# File 'lib/aws-sdk-ec2/types.rb', line 242

class ActiveInstance < Struct.new(
  :instance_id,
  :instance_type,
  :spot_instance_request_id,
  :instance_health)
  include Aws::Structure
end

#spot_instance_request_idString

The ID of the Spot Instance request.

Returns:

  • (String)


242
243
244
245
246
247
248
# File 'lib/aws-sdk-ec2/types.rb', line 242

class ActiveInstance < Struct.new(
  :instance_id,
  :instance_type,
  :spot_instance_request_id,
  :instance_health)
  include Aws::Structure
end