#[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 ==
.