Struct aws_sdk_kafka::types::VpcConnectivitySasl
source · #[non_exhaustive]pub struct VpcConnectivitySasl {
pub scram: Option<VpcConnectivityScram>,
pub iam: Option<VpcConnectivityIam>,
}
Expand description
Details for SASL client authentication for VPC connectivity.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.scram: Option<VpcConnectivityScram>
Details for SASL/SCRAM client authentication for VPC connectivity.
iam: Option<VpcConnectivityIam>
Details for SASL/IAM client authentication for VPC connectivity.
Implementations§
source§impl VpcConnectivitySasl
impl VpcConnectivitySasl
sourcepub fn scram(&self) -> Option<&VpcConnectivityScram>
pub fn scram(&self) -> Option<&VpcConnectivityScram>
Details for SASL/SCRAM client authentication for VPC connectivity.
sourcepub fn iam(&self) -> Option<&VpcConnectivityIam>
pub fn iam(&self) -> Option<&VpcConnectivityIam>
Details for SASL/IAM client authentication for VPC connectivity.
source§impl VpcConnectivitySasl
impl VpcConnectivitySasl
sourcepub fn builder() -> VpcConnectivitySaslBuilder
pub fn builder() -> VpcConnectivitySaslBuilder
Creates a new builder-style object to manufacture VpcConnectivitySasl
.
Trait Implementations§
source§impl Clone for VpcConnectivitySasl
impl Clone for VpcConnectivitySasl
source§fn clone(&self) -> VpcConnectivitySasl
fn clone(&self) -> VpcConnectivitySasl
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 Debug for VpcConnectivitySasl
impl Debug for VpcConnectivitySasl
source§impl PartialEq for VpcConnectivitySasl
impl PartialEq for VpcConnectivitySasl
source§fn eq(&self, other: &VpcConnectivitySasl) -> bool
fn eq(&self, other: &VpcConnectivitySasl) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VpcConnectivitySasl
Auto Trait Implementations§
impl RefUnwindSafe for VpcConnectivitySasl
impl Send for VpcConnectivitySasl
impl Sync for VpcConnectivitySasl
impl Unpin for VpcConnectivitySasl
impl UnwindSafe for VpcConnectivitySasl
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>
Creates a shared type from an unshared type.