import { _StatusReport, _UnmarshalledStatusReport } from "./_StatusReport"; /** *

A complex type that contains the last failure reason as reported by one Amazon Route 53 health checker.

*/ export interface _HealthCheckObservation { /** *

The region of the Amazon Route 53 health checker that provided the status in StatusReport.

*/ Region?: "us-east-1" | "us-west-1" | "us-west-2" | "eu-west-1" | "ap-southeast-1" | "ap-southeast-2" | "ap-northeast-1" | "sa-east-1" | string; /** *

The IP address of the Amazon Route 53 health checker that provided the failure reason in StatusReport.

*/ IPAddress?: string; /** *

A complex type that contains the last failure reason as reported by one Amazon Route 53 health checker and the time of the failed health check.

*/ StatusReport?: _StatusReport; } export interface _UnmarshalledHealthCheckObservation extends _HealthCheckObservation { /** *

A complex type that contains the last failure reason as reported by one Amazon Route 53 health checker and the time of the failed health check.

*/ StatusReport?: _UnmarshalledStatusReport; }