Class: Aws::RDS::Types::TargetHealth

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#descriptionString

A description of the health of the RDS Proxy target. If the ‘State` is `AVAILABLE`, a description is not included.

Returns:

  • (String)


26848
26849
26850
26851
26852
26853
26854
# File 'lib/aws-sdk-rds/types.rb', line 26848

class TargetHealth < Struct.new(
  :state,
  :reason,
  :description)
  SENSITIVE = []
  include Aws::Structure
end

#reasonString

The reason for the current health ‘State` of the RDS Proxy target.

Returns:

  • (String)


26848
26849
26850
26851
26852
26853
26854
# File 'lib/aws-sdk-rds/types.rb', line 26848

class TargetHealth < Struct.new(
  :state,
  :reason,
  :description)
  SENSITIVE = []
  include Aws::Structure
end

#stateString

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` &gt; `unavailable` &gt; `available` &gt; `unavailable` &gt; `available`

Returns:

  • (String)


26848
26849
26850
26851
26852
26853
26854
# File 'lib/aws-sdk-rds/types.rb', line 26848

class TargetHealth < Struct.new(
  :state,
  :reason,
  :description)
  SENSITIVE = []
  include Aws::Structure
end