[][src]Struct rusoto_appmesh::Listener

pub struct Listener {
    pub connection_pool: Option<VirtualNodeConnectionPool>,
    pub health_check: Option<HealthCheckPolicy>,
    pub outlier_detection: Option<OutlierDetection>,
    pub port_mapping: PortMapping,
    pub timeout: Option<ListenerTimeout>,
    pub tls: Option<ListenerTls>,
}

An object that represents a listener for a virtual node.

Fields

connection_pool: Option<VirtualNodeConnectionPool>

The connection pool information for the listener.

health_check: Option<HealthCheckPolicy>

The health check information for the listener.

outlier_detection: Option<OutlierDetection>

The outlier detection information for the listener.

port_mapping: PortMapping

The port mapping information for the listener.

timeout: Option<ListenerTimeout>

An object that represents timeouts for different protocols.

tls: Option<ListenerTls>

A reference to an object that represents the Transport Layer Security (TLS) properties for a listener.

Trait Implementations

impl Clone for Listener[src]

impl Debug for Listener[src]

impl Default for Listener[src]

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

impl PartialEq<Listener> for Listener[src]

impl Serialize for Listener[src]

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