Class: Aws::RDS::Types::TargetHealth
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::RDS::Types::TargetHealth
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-rds/types.rb
 
Overview
Information about the connection health of an RDS Proxy target.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A description of the health of the RDS Proxy target.
 - 
  
    
      #reason  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The reason for the current health ‘State` of the RDS Proxy target.
 - 
  
    
      #state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The current state of the connection health lifecycle for the RDS Proxy target.
 
Instance Attribute Details
#description ⇒ String
A description of the health of the RDS Proxy target. If the ‘State` is `AVAILABLE`, a description is not included.
      27981 27982 27983 27984 27985 27986 27987  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 27981 class TargetHealth < Struct.new( :state, :reason, :description) SENSITIVE = [] include Aws::Structure end  | 
  
#reason ⇒ String
The reason for the current health ‘State` of the RDS Proxy target.
      27981 27982 27983 27984 27985 27986 27987  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 27981 class TargetHealth < Struct.new( :state, :reason, :description) SENSITIVE = [] include Aws::Structure end  | 
  
#state ⇒ String
The current state of the connection health lifecycle for the RDS Proxy target. The following is a typical lifecycle example for the states of an RDS Proxy target:
‘registering` > `unavailable` > `available` > `unavailable` > `available`
      27981 27982 27983 27984 27985 27986 27987  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 27981 class TargetHealth < Struct.new( :state, :reason, :description) SENSITIVE = [] include Aws::Structure end  |