Struct aws_sdk_appmesh::model::VirtualGatewayListener
source · [−]#[non_exhaustive]pub struct VirtualGatewayListener {
pub health_check: Option<VirtualGatewayHealthCheckPolicy>,
pub port_mapping: Option<VirtualGatewayPortMapping>,
pub tls: Option<VirtualGatewayListenerTls>,
pub connection_pool: Option<VirtualGatewayConnectionPool>,
}
Expand description
An object that represents a listener for a virtual gateway.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.health_check: Option<VirtualGatewayHealthCheckPolicy>
The health check information for the listener.
port_mapping: Option<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.
connection_pool: Option<VirtualGatewayConnectionPool>
The connection pool information for the virtual gateway listener.
Implementations
sourceimpl VirtualGatewayListener
impl VirtualGatewayListener
sourcepub fn health_check(&self) -> Option<&VirtualGatewayHealthCheckPolicy>
pub fn health_check(&self) -> Option<&VirtualGatewayHealthCheckPolicy>
The health check information for the listener.
sourcepub fn port_mapping(&self) -> Option<&VirtualGatewayPortMapping>
pub fn port_mapping(&self) -> Option<&VirtualGatewayPortMapping>
The port mapping information for the listener.
sourcepub fn tls(&self) -> Option<&VirtualGatewayListenerTls>
pub fn tls(&self) -> Option<&VirtualGatewayListenerTls>
A reference to an object that represents the Transport Layer Security (TLS) properties for the listener.
sourcepub fn connection_pool(&self) -> Option<&VirtualGatewayConnectionPool>
pub fn connection_pool(&self) -> Option<&VirtualGatewayConnectionPool>
The connection pool information for the virtual gateway listener.
sourceimpl VirtualGatewayListener
impl VirtualGatewayListener
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture VirtualGatewayListener
.
Trait Implementations
sourceimpl Clone for VirtualGatewayListener
impl Clone for VirtualGatewayListener
sourcefn clone(&self) -> VirtualGatewayListener
fn clone(&self) -> VirtualGatewayListener
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for VirtualGatewayListener
impl Debug for VirtualGatewayListener
sourceimpl PartialEq<VirtualGatewayListener> for VirtualGatewayListener
impl PartialEq<VirtualGatewayListener> for VirtualGatewayListener
sourcefn eq(&self, other: &VirtualGatewayListener) -> bool
fn eq(&self, other: &VirtualGatewayListener) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &VirtualGatewayListener) -> bool
fn ne(&self, other: &VirtualGatewayListener) -> bool
This method tests for !=
.
impl StructuralPartialEq for VirtualGatewayListener
Auto Trait Implementations
impl RefUnwindSafe for VirtualGatewayListener
impl Send for VirtualGatewayListener
impl Sync for VirtualGatewayListener
impl Unpin for VirtualGatewayListener
impl UnwindSafe for VirtualGatewayListener
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more