Get Health Check Last Failure Reason
route53_get_health_check_last_failure_reason | R Documentation |
Gets the reason that a specified health check failed most recently¶
Description¶
Gets the reason that a specified health check failed most recently.
Usage¶
route53_get_health_check_last_failure_reason(HealthCheckId)
Arguments¶
HealthCheckId |
[required] The ID for the health check for which you want the
last failure reason. When you created the health check,
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 |
Value¶
A list with the following syntax:
list(
HealthCheckObservations = list(
list(
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",
IPAddress = "string",
StatusReport = list(
Status = "string",
CheckedTime = as.POSIXct(
"2015-01-01"
)
)
)
)
)
Request syntax¶
svc$get_health_check_last_failure_reason(
HealthCheckId = "string"
)