#[non_exhaustive]pub struct AwsMskClusterClusterInfoClientAuthenticationTlsDetails {
pub certificate_authority_arn_list: Option<Vec<String>>,
pub enabled: Option<bool>,
}
Expand description
Provides details for client authentication using TLS.
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.List of Amazon Web Services Private CA Amazon Resource Names (ARNs). Amazon Web Services Private CA enables creation of private certificate authority (CA) hierarchies, including root and subordinate CAs, without the investment and maintenance costs of operating an on-premises CA.
enabled: Option<bool>
Indicates whether TLS authentication is enabled or not.
Implementations§
source§impl AwsMskClusterClusterInfoClientAuthenticationTlsDetails
impl AwsMskClusterClusterInfoClientAuthenticationTlsDetails
List of Amazon Web Services Private CA Amazon Resource Names (ARNs). Amazon Web Services Private CA enables creation of private certificate authority (CA) hierarchies, including root and subordinate CAs, without the investment and maintenance costs of operating an on-premises CA.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .certificate_authority_arn_list.is_none()
.
source§impl AwsMskClusterClusterInfoClientAuthenticationTlsDetails
impl AwsMskClusterClusterInfoClientAuthenticationTlsDetails
sourcepub fn builder(
) -> AwsMskClusterClusterInfoClientAuthenticationTlsDetailsBuilder
pub fn builder( ) -> AwsMskClusterClusterInfoClientAuthenticationTlsDetailsBuilder
Creates a new builder-style object to manufacture AwsMskClusterClusterInfoClientAuthenticationTlsDetails
.
Trait Implementations§
source§impl Clone for AwsMskClusterClusterInfoClientAuthenticationTlsDetails
impl Clone for AwsMskClusterClusterInfoClientAuthenticationTlsDetails
source§fn clone(&self) -> AwsMskClusterClusterInfoClientAuthenticationTlsDetails
fn clone(&self) -> AwsMskClusterClusterInfoClientAuthenticationTlsDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for AwsMskClusterClusterInfoClientAuthenticationTlsDetails
impl PartialEq for AwsMskClusterClusterInfoClientAuthenticationTlsDetails
source§fn eq(
&self,
other: &AwsMskClusterClusterInfoClientAuthenticationTlsDetails
) -> bool
fn eq( &self, other: &AwsMskClusterClusterInfoClientAuthenticationTlsDetails ) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsMskClusterClusterInfoClientAuthenticationTlsDetails
Auto Trait Implementations§
impl Freeze for AwsMskClusterClusterInfoClientAuthenticationTlsDetails
impl RefUnwindSafe for AwsMskClusterClusterInfoClientAuthenticationTlsDetails
impl Send for AwsMskClusterClusterInfoClientAuthenticationTlsDetails
impl Sync for AwsMskClusterClusterInfoClientAuthenticationTlsDetails
impl Unpin for AwsMskClusterClusterInfoClientAuthenticationTlsDetails
impl UnwindSafe for AwsMskClusterClusterInfoClientAuthenticationTlsDetails
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
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>
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>
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 more