Class: Aws::EC2::Types::ActiveInstance
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::ActiveInstance
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Describes a running instance in a Spot Fleet.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#instance_health ⇒ String
The health status of the instance.
-
#instance_id ⇒ String
The ID of the instance.
-
#instance_type ⇒ String
The instance type.
-
#spot_instance_request_id ⇒ String
The ID of the Spot Instance request.
Instance Attribute Details
#instance_health ⇒ String
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.
561 562 563 564 565 566 567 568 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 561 class ActiveInstance < Struct.new( :instance_id, :instance_type, :spot_instance_request_id, :instance_health) SENSITIVE = [] include Aws::Structure end |
#instance_id ⇒ String
The ID of the instance.
561 562 563 564 565 566 567 568 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 561 class ActiveInstance < Struct.new( :instance_id, :instance_type, :spot_instance_request_id, :instance_health) SENSITIVE = [] include Aws::Structure end |
#instance_type ⇒ String
The instance type.
561 562 563 564 565 566 567 568 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 561 class ActiveInstance < Struct.new( :instance_id, :instance_type, :spot_instance_request_id, :instance_health) SENSITIVE = [] include Aws::Structure end |
#spot_instance_request_id ⇒ String
The ID of the Spot Instance request.
561 562 563 564 565 566 567 568 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 561 class ActiveInstance < Struct.new( :instance_id, :instance_type, :spot_instance_request_id, :instance_health) SENSITIVE = [] include Aws::Structure end |