Class: Aws::Route53::Types::StatusReport
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Route53::Types::StatusReport
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-route53/types.rb
 
Overview
A complex type that contains the status that one Amazon Route 53 health checker reports and the time of the health check.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #checked_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The date and time that the health checker performed the health check in [ISO 8601 format] and Coordinated Universal Time (UTC).
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A description of the status of the health check endpoint as reported by one of the Amazon Route 53 health checkers.
 
Instance Attribute Details
#checked_time ⇒ Time
The date and time that the health checker performed the health check in [ISO 8601 format] and Coordinated Universal Time (UTC). For example, the value ‘2017-03-27T17:48:16.751Z` represents March 27, 2017 at 17:48:16.751 UTC.
      6951 6952 6953 6954 6955 6956  | 
    
      # File 'lib/aws-sdk-route53/types.rb', line 6951 class StatusReport < Struct.new( :status, :checked_time) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ String
A description of the status of the health check endpoint as reported by one of the Amazon Route 53 health checkers.
      6951 6952 6953 6954 6955 6956  | 
    
      # File 'lib/aws-sdk-route53/types.rb', line 6951 class StatusReport < Struct.new( :status, :checked_time) SENSITIVE = [] include Aws::Structure end  |