[][src]Struct rusoto_appmesh::VirtualGatewayListener

pub struct VirtualGatewayListener {
    pub connection_pool: Option<VirtualGatewayConnectionPool>,
    pub health_check: Option<VirtualGatewayHealthCheckPolicy>,
    pub port_mapping: VirtualGatewayPortMapping,
    pub tls: Option<VirtualGatewayListenerTls>,
}

An object that represents a listener for a virtual gateway.

Fields

connection_pool: Option<VirtualGatewayConnectionPool>

The connection pool information for the virtual gateway listener.

health_check: Option<VirtualGatewayHealthCheckPolicy>

The health check information for the listener.

port_mapping: VirtualGatewayPortMapping

The port mapping information for the listener.

tls: Option<VirtualGatewayListenerTls>

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

Trait Implementations

impl Clone for VirtualGatewayListener[src]

impl Debug for VirtualGatewayListener[src]

impl Default for VirtualGatewayListener[src]

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

impl PartialEq<VirtualGatewayListener> for VirtualGatewayListener[src]

impl Serialize for VirtualGatewayListener[src]

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