Struct rusoto_route53::GetHealthCheckLastFailureReasonRequest[][src]

pub struct GetHealthCheckLastFailureReasonRequest {
    pub health_check_id: String,
}

A request for the reason that a health check failed most recently.

Fields

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.

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.

Trait Implementations

impl Default for GetHealthCheckLastFailureReasonRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for GetHealthCheckLastFailureReasonRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetHealthCheckLastFailureReasonRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetHealthCheckLastFailureReasonRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations