Struct aws_sdk_appmesh::model::VirtualGatewayListenerTls
source · [−]#[non_exhaustive]pub struct VirtualGatewayListenerTls {
pub mode: Option<VirtualGatewayListenerTlsMode>,
pub validation: Option<VirtualGatewayListenerTlsValidationContext>,
pub certificate: Option<VirtualGatewayListenerTlsCertificate>,
}
Expand description
An object that represents the Transport Layer Security (TLS) properties for a listener.
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.mode: Option<VirtualGatewayListenerTlsMode>
Specify one of the following modes.
-
STRICT – Listener only accepts connections with TLS enabled.
-
PERMISSIVE – Listener accepts connections with or without TLS enabled.
-
DISABLED – Listener only accepts connections without TLS.
validation: Option<VirtualGatewayListenerTlsValidationContext>
A reference to an object that represents a virtual gateway's listener's Transport Layer Security (TLS) validation context.
certificate: Option<VirtualGatewayListenerTlsCertificate>
An object that represents a Transport Layer Security (TLS) certificate.
Implementations
sourceimpl VirtualGatewayListenerTls
impl VirtualGatewayListenerTls
sourcepub fn mode(&self) -> Option<&VirtualGatewayListenerTlsMode>
pub fn mode(&self) -> Option<&VirtualGatewayListenerTlsMode>
Specify one of the following modes.
-
STRICT – Listener only accepts connections with TLS enabled.
-
PERMISSIVE – Listener accepts connections with or without TLS enabled.
-
DISABLED – Listener only accepts connections without TLS.
sourcepub fn validation(&self) -> Option<&VirtualGatewayListenerTlsValidationContext>
pub fn validation(&self) -> Option<&VirtualGatewayListenerTlsValidationContext>
A reference to an object that represents a virtual gateway's listener's Transport Layer Security (TLS) validation context.
sourcepub fn certificate(&self) -> Option<&VirtualGatewayListenerTlsCertificate>
pub fn certificate(&self) -> Option<&VirtualGatewayListenerTlsCertificate>
An object that represents a Transport Layer Security (TLS) certificate.
sourceimpl VirtualGatewayListenerTls
impl VirtualGatewayListenerTls
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture VirtualGatewayListenerTls
.
Trait Implementations
sourceimpl Clone for VirtualGatewayListenerTls
impl Clone for VirtualGatewayListenerTls
sourcefn clone(&self) -> VirtualGatewayListenerTls
fn clone(&self) -> VirtualGatewayListenerTls
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 VirtualGatewayListenerTls
impl Debug for VirtualGatewayListenerTls
sourceimpl PartialEq<VirtualGatewayListenerTls> for VirtualGatewayListenerTls
impl PartialEq<VirtualGatewayListenerTls> for VirtualGatewayListenerTls
sourcefn eq(&self, other: &VirtualGatewayListenerTls) -> bool
fn eq(&self, other: &VirtualGatewayListenerTls) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &VirtualGatewayListenerTls) -> bool
fn ne(&self, other: &VirtualGatewayListenerTls) -> bool
This method tests for !=
.
impl StructuralPartialEq for VirtualGatewayListenerTls
Auto Trait Implementations
impl RefUnwindSafe for VirtualGatewayListenerTls
impl Send for VirtualGatewayListenerTls
impl Sync for VirtualGatewayListenerTls
impl Unpin for VirtualGatewayListenerTls
impl UnwindSafe for VirtualGatewayListenerTls
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