[][src]Struct rusoto_route53::GetHealthCheckLastFailureReasonRequest

pub struct GetHealthCheckLastFailureReasonRequest {
    pub health_check_id: String,
}

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

Fields

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.

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 Clone for GetHealthCheckLastFailureReasonRequest[src]

impl Default for GetHealthCheckLastFailureReasonRequest[src]

impl PartialEq<GetHealthCheckLastFailureReasonRequest> for GetHealthCheckLastFailureReasonRequest[src]

impl Debug for GetHealthCheckLastFailureReasonRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,