[][src]Struct rusoto_appmesh::VirtualNodeSpec

pub struct VirtualNodeSpec {
    pub backend_defaults: Option<BackendDefaults>,
    pub backends: Option<Vec<Backend>>,
    pub listeners: Option<Vec<Listener>>,
    pub logging: Option<Logging>,
    pub service_discovery: Option<ServiceDiscovery>,
}

An object that represents the specification of a virtual node.

Fields

backend_defaults: Option<BackendDefaults>

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

backends: Option<Vec<Backend>>

The backends that the virtual node is expected to send outbound traffic to.

listeners: Option<Vec<Listener>>

The listener that the virtual node is expected to receive inbound traffic from. You can specify one listener.

logging: Option<Logging>

The inbound and outbound access logging information for the virtual node.

service_discovery: Option<ServiceDiscovery>

The service discovery information for the virtual node. If your virtual node does not expect ingress traffic, you can omit this parameter. If you specify a listener, then you must specify service discovery information.

Trait Implementations

impl Clone for VirtualNodeSpec[src]

impl Debug for VirtualNodeSpec[src]

impl Default for VirtualNodeSpec[src]

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

impl PartialEq<VirtualNodeSpec> for VirtualNodeSpec[src]

impl Serialize for VirtualNodeSpec[src]

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