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.
666 667 668 669 670 671 672 673 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 666 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.
666 667 668 669 670 671 672 673 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 666 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.
666 667 668 669 670 671 672 673 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 666 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.
666 667 668 669 670 671 672 673 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 666 class ActiveInstance < Struct.new( :instance_id, :instance_type, :spot_instance_request_id, :instance_health) SENSITIVE = [] include Aws::Structure end |