Class: Aws::EC2::Types::ActiveInstance
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::ActiveInstance
 
 
- Includes:
 - Structure
 
- Defined in:
 - 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`.
      529 530 531 532 533 534 535 536  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 529 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.
      529 530 531 532 533 534 535 536  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 529 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.
      529 530 531 532 533 534 535 536  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 529 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.
      529 530 531 532 533 534 535 536  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 529 class ActiveInstance < Struct.new( :instance_id, :instance_type, :spot_instance_request_id, :instance_health) SENSITIVE = [] include Aws::Structure end  |