Class: Aws::Route53::Types::GetHealthCheckLastFailureReasonRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Route53::Types::GetHealthCheckLastFailureReasonRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-route53/types.rb
 
Overview
A request for the reason that a health check failed most recently.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #health_check_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID for the health check for which you want the last failure reason.
 
Instance Attribute Details
#health_check_id ⇒ String
The ID for the health check for which you want the last failure reason. When you created the health check, ‘CreateHealthCheck` returned the ID in the response, in the `HealthCheckId` element.
<note markdown=“1”> If you want to get the last failure reason for a calculated health check, you must use the Amazon Route 53 console or the CloudWatch console. You can’t use ‘GetHealthCheckLastFailureReason` for a calculated health check.
</note>
  
      2761 2762 2763 2764 2765  | 
    
      # File 'lib/aws-sdk-route53/types.rb', line 2761 class GetHealthCheckLastFailureReasonRequest < Struct.new( :health_check_id) SENSITIVE = [] include Aws::Structure end  |