[][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

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

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

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

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.

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.

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 Default for HealthCheck
[src]

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

impl PartialEq<HealthCheck> for HealthCheck
[src]

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

This method tests for !=.

impl Clone for HealthCheck
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for HealthCheck
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for HealthCheck

impl Sync for HealthCheck

Blanket Implementations

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

Performs the conversion.

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

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> From for T
[src]

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> Same for T

Should always be Self

impl<T> Erased for T