#[non_exhaustive]pub struct UpdateSecurityInput { /* private fields */ }
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
.
source§impl UpdateSecurityInput
impl UpdateSecurityInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateSecurity, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<UpdateSecurity, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateSecurity
>
Trait Implementations§
source§impl Clone for UpdateSecurityInput
impl Clone for UpdateSecurityInput
source§fn clone(&self) -> UpdateSecurityInput
fn clone(&self) -> UpdateSecurityInput
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 UpdateSecurityInput
impl Debug for UpdateSecurityInput
source§impl PartialEq<UpdateSecurityInput> for UpdateSecurityInput
impl PartialEq<UpdateSecurityInput> for UpdateSecurityInput
source§fn eq(&self, other: &UpdateSecurityInput) -> bool
fn eq(&self, other: &UpdateSecurityInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateSecurityInput
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more