Struct rusoto_route53::GetHealthCheckStatusRequest[][src]

pub struct GetHealthCheckStatusRequest {
    pub health_check_id: String,
}

A request to get the status for a health check.

Fields

The ID for the health check that you want the current status for. When you created the health check, CreateHealthCheck returned the ID in the response, in the HealthCheckId element.

If you want to check the status of a calculated health check, you must use the Amazon Route 53 console or the CloudWatch console. You can't use GetHealthCheckStatus to get the status of a calculated health check.

Trait Implementations

impl Default for GetHealthCheckStatusRequest
[src]

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

impl Debug for GetHealthCheckStatusRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetHealthCheckStatusRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetHealthCheckStatusRequest
[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