[][src]Struct rusoto_appmesh::OutlierDetection

pub struct OutlierDetection {
    pub base_ejection_duration: Duration,
    pub interval: Duration,
    pub max_ejection_percent: i64,
    pub max_server_errors: i64,
}

An object that represents the outlier detection for a virtual node's listener.

Fields

base_ejection_duration: Duration

The base amount of time for which a host is ejected.

interval: Duration

The time interval between ejection sweep analysis.

max_ejection_percent: i64

Maximum percentage of hosts in load balancing pool for upstream service that can be ejected. Will eject at least one host regardless of the value.

max_server_errors: i64

Number of consecutive 5xx errors required for ejection.

Trait Implementations

impl Clone for OutlierDetection[src]

impl Debug for OutlierDetection[src]

impl Default for OutlierDetection[src]

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

impl PartialEq<OutlierDetection> for OutlierDetection[src]

impl Serialize for OutlierDetection[src]

impl StructuralPartialEq for OutlierDetection[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.