[][src]Struct rusoto_route53::HealthCheck

pub struct HealthCheck {
    pub caller_reference: String,
    pub cloud_watch_alarm_configuration: Option<CloudWatchAlarmConfiguration>,
    pub health_check_config: HealthCheckConfig,
    pub health_check_version: i64,
    pub id: String,
    pub linked_service: Option<LinkedService>,
}

A complex type that contains information about one health check that is associated with the current AWS account.

Fields

caller_reference: String

A unique string that you specified when you created the health check.

cloud_watch_alarm_configuration: Option<CloudWatchAlarmConfiguration>

A complex type that contains information about the CloudWatch alarm that Amazon Route 53 is monitoring for this health check.

health_check_config: HealthCheckConfig

A complex type that contains detailed information about one health check.

health_check_version: i64

The version of the health check. You can optionally pass this value in a call to UpdateHealthCheck to prevent overwriting another change to the health check.

id: String

The identifier that Amazon Route 53assigned to the health check when you created it. When you add or update a resource record set, you use this value to specify which health check to use. The value can be up to 64 characters long.

linked_service: Option<LinkedService>

If the health check was created by another service, the service that created the health check. When a health check is created by another service, you can't edit or delete it using Amazon Route 53.

Trait Implementations

impl Clone for HealthCheck[src]

impl Default for HealthCheck[src]

impl PartialEq<HealthCheck> for HealthCheck[src]

impl Debug for HealthCheck[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