[][src]Struct rusoto_lightsail::ContainerServiceHealthCheckConfig

pub struct ContainerServiceHealthCheckConfig {
    pub healthy_threshold: Option<i64>,
    pub interval_seconds: Option<i64>,
    pub path: Option<String>,
    pub success_codes: Option<String>,
    pub timeout_seconds: Option<i64>,
    pub unhealthy_threshold: Option<i64>,
}

Describes the health check configuration of an Amazon Lightsail container service.

Fields

healthy_threshold: Option<i64>

The number of consecutive health checks successes required before moving the container to the Healthy state.

interval_seconds: Option<i64>

The approximate interval, in seconds, between health checks of an individual container. You may specify between 5 and 300 seconds.

path: Option<String>

The path on the container on which to perform the health check.

success_codes: Option<String>

The HTTP codes to use when checking for a successful response from a container. You can specify values between 200 and 499.

timeout_seconds: Option<i64>

The amount of time, in seconds, during which no response means a failed health check. You may specify between 2 and 60 seconds.

unhealthy_threshold: Option<i64>

The number of consecutive health check failures required before moving the container to the Unhealthy state.

Trait Implementations

impl Clone for ContainerServiceHealthCheckConfig[src]

impl Debug for ContainerServiceHealthCheckConfig[src]

impl Default for ContainerServiceHealthCheckConfig[src]

impl<'de> Deserialize<'de> for ContainerServiceHealthCheckConfig[src]

impl PartialEq<ContainerServiceHealthCheckConfig> for ContainerServiceHealthCheckConfig[src]

impl Serialize for ContainerServiceHealthCheckConfig[src]

impl StructuralPartialEq for ContainerServiceHealthCheckConfig[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.