[][src]Struct rusoto_appmesh::VirtualGatewaySpec

pub struct VirtualGatewaySpec {
    pub backend_defaults: Option<VirtualGatewayBackendDefaults>,
    pub listeners: Vec<VirtualGatewayListener>,
    pub logging: Option<VirtualGatewayLogging>,
}

An object that represents the specification of a service mesh resource.

Fields

backend_defaults: Option<VirtualGatewayBackendDefaults>

A reference to an object that represents the defaults for backends.

listeners: Vec<VirtualGatewayListener>

The listeners that the mesh endpoint is expected to receive inbound traffic from. You can specify one listener.

logging: Option<VirtualGatewayLogging>

Trait Implementations

impl Clone for VirtualGatewaySpec[src]

impl Debug for VirtualGatewaySpec[src]

impl Default for VirtualGatewaySpec[src]

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

impl PartialEq<VirtualGatewaySpec> for VirtualGatewaySpec[src]

impl Serialize for VirtualGatewaySpec[src]

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