#[non_exhaustive]pub struct UpdateSecurityInput {
pub client_authentication: Option<ClientAuthentication>,
pub cluster_arn: Option<String>,
pub current_version: Option<String>,
pub encryption_info: Option<EncryptionInfo>,
}
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.client_authentication: Option<ClientAuthentication>
Includes all client authentication related information.
cluster_arn: Option<String>
The Amazon Resource Name (ARN) that uniquely identifies the cluster.
current_version: Option<String>
The version of the MSK cluster to update. Cluster versions aren't simple numbers. You can describe an MSK cluster to find its version. When this update operation is successful, it generates a new cluster version.
encryption_info: Option<EncryptionInfo>
Includes all encryption-related information.
Implementations§
source§impl UpdateSecurityInput
impl UpdateSecurityInput
sourcepub fn client_authentication(&self) -> Option<&ClientAuthentication>
pub fn client_authentication(&self) -> Option<&ClientAuthentication>
Includes all client authentication related information.
sourcepub fn cluster_arn(&self) -> Option<&str>
pub fn cluster_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) that uniquely identifies the cluster.
sourcepub fn current_version(&self) -> Option<&str>
pub fn current_version(&self) -> Option<&str>
The version of the MSK cluster to update. Cluster versions aren't simple numbers. You can describe an MSK cluster to find its version. When this update operation is successful, it generates a new cluster version.
sourcepub fn encryption_info(&self) -> Option<&EncryptionInfo>
pub fn encryption_info(&self) -> Option<&EncryptionInfo>
Includes all encryption-related information.
source§impl UpdateSecurityInput
impl UpdateSecurityInput
sourcepub fn builder() -> UpdateSecurityInputBuilder
pub fn builder() -> UpdateSecurityInputBuilder
Creates a new builder-style object to manufacture UpdateSecurityInput
.
Trait Implementations§
source§impl Clone for UpdateSecurityInput
impl Clone for UpdateSecurityInput
source§fn clone(&self) -> UpdateSecurityInput
fn clone(&self) -> UpdateSecurityInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateSecurityInput
impl Debug for UpdateSecurityInput
source§impl PartialEq for UpdateSecurityInput
impl PartialEq for UpdateSecurityInput
source§fn eq(&self, other: &UpdateSecurityInput) -> bool
fn eq(&self, other: &UpdateSecurityInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateSecurityInput
Auto Trait Implementations§
impl Freeze for UpdateSecurityInput
impl RefUnwindSafe for UpdateSecurityInput
impl Send for UpdateSecurityInput
impl Sync for UpdateSecurityInput
impl Unpin for UpdateSecurityInput
impl UnwindSafe for UpdateSecurityInput
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