[][src]Struct rusoto_discovery::CustomerConnectorInfo

pub struct CustomerConnectorInfo {
    pub active_connectors: i64,
    pub black_listed_connectors: i64,
    pub healthy_connectors: i64,
    pub shutdown_connectors: i64,
    pub total_connectors: i64,
    pub unhealthy_connectors: i64,
    pub unknown_connectors: i64,
}

Inventory data for installed discovery connectors.

Fields

active_connectors: i64

Number of active discovery connectors.

black_listed_connectors: i64

Number of blacklisted discovery connectors.

healthy_connectors: i64

Number of healthy discovery connectors.

shutdown_connectors: i64

Number of discovery connectors with status SHUTDOWN,

total_connectors: i64

Total number of discovery connectors.

unhealthy_connectors: i64

Number of unhealthy discovery connectors.

unknown_connectors: i64

Number of unknown discovery connectors.

Trait Implementations

impl Clone for CustomerConnectorInfo[src]

impl Debug for CustomerConnectorInfo[src]

impl Default for CustomerConnectorInfo[src]

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

impl PartialEq<CustomerConnectorInfo> for CustomerConnectorInfo[src]

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