#[non_exhaustive]pub struct VpcConnectivityClientAuthenticationBuilder { /* private fields */ }
Expand description
A builder for VpcConnectivityClientAuthentication
.
Implementations§
source§impl VpcConnectivityClientAuthenticationBuilder
impl VpcConnectivityClientAuthenticationBuilder
sourcepub fn sasl(self, input: VpcConnectivitySasl) -> Self
pub fn sasl(self, input: VpcConnectivitySasl) -> Self
SASL authentication type details for VPC connectivity.
sourcepub fn set_sasl(self, input: Option<VpcConnectivitySasl>) -> Self
pub fn set_sasl(self, input: Option<VpcConnectivitySasl>) -> Self
SASL authentication type details for VPC connectivity.
sourcepub fn get_sasl(&self) -> &Option<VpcConnectivitySasl>
pub fn get_sasl(&self) -> &Option<VpcConnectivitySasl>
SASL authentication type details for VPC connectivity.
sourcepub fn tls(self, input: VpcConnectivityTls) -> Self
pub fn tls(self, input: VpcConnectivityTls) -> Self
TLS authentication type details for VPC connectivity.
sourcepub fn set_tls(self, input: Option<VpcConnectivityTls>) -> Self
pub fn set_tls(self, input: Option<VpcConnectivityTls>) -> Self
TLS authentication type details for VPC connectivity.
sourcepub fn get_tls(&self) -> &Option<VpcConnectivityTls>
pub fn get_tls(&self) -> &Option<VpcConnectivityTls>
TLS authentication type details for VPC connectivity.
sourcepub fn build(self) -> VpcConnectivityClientAuthentication
pub fn build(self) -> VpcConnectivityClientAuthentication
Consumes the builder and constructs a VpcConnectivityClientAuthentication
.
Trait Implementations§
source§impl Clone for VpcConnectivityClientAuthenticationBuilder
impl Clone for VpcConnectivityClientAuthenticationBuilder
source§fn clone(&self) -> VpcConnectivityClientAuthenticationBuilder
fn clone(&self) -> VpcConnectivityClientAuthenticationBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for VpcConnectivityClientAuthenticationBuilder
impl Default for VpcConnectivityClientAuthenticationBuilder
source§fn default() -> VpcConnectivityClientAuthenticationBuilder
fn default() -> VpcConnectivityClientAuthenticationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for VpcConnectivityClientAuthenticationBuilder
impl PartialEq for VpcConnectivityClientAuthenticationBuilder
source§fn eq(&self, other: &VpcConnectivityClientAuthenticationBuilder) -> bool
fn eq(&self, other: &VpcConnectivityClientAuthenticationBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VpcConnectivityClientAuthenticationBuilder
Auto Trait Implementations§
impl Freeze for VpcConnectivityClientAuthenticationBuilder
impl RefUnwindSafe for VpcConnectivityClientAuthenticationBuilder
impl Send for VpcConnectivityClientAuthenticationBuilder
impl Sync for VpcConnectivityClientAuthenticationBuilder
impl Unpin for VpcConnectivityClientAuthenticationBuilder
impl UnwindSafe for VpcConnectivityClientAuthenticationBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.