pub struct UpdateClusterConfigurationRequest {
pub cluster_arn: String,
pub configuration_info: ConfigurationInfo,
pub current_version: String,
}
Fields§
§cluster_arn: String
<p>The Amazon Resource Name (ARN) that uniquely identifies the cluster.</p>
configuration_info: ConfigurationInfo
<p>Represents the configuration that you want MSK to use for the brokers in a cluster.</p>
current_version: String
<p>The version of the cluster that needs to be updated.</p>
Trait Implementations§
Source§impl Clone for UpdateClusterConfigurationRequest
impl Clone for UpdateClusterConfigurationRequest
Source§fn clone(&self) -> UpdateClusterConfigurationRequest
fn clone(&self) -> UpdateClusterConfigurationRequest
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 Default for UpdateClusterConfigurationRequest
impl Default for UpdateClusterConfigurationRequest
Source§fn default() -> UpdateClusterConfigurationRequest
fn default() -> UpdateClusterConfigurationRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateClusterConfigurationRequest
impl PartialEq for UpdateClusterConfigurationRequest
Source§fn eq(&self, other: &UpdateClusterConfigurationRequest) -> bool
fn eq(&self, other: &UpdateClusterConfigurationRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateClusterConfigurationRequest
Auto Trait Implementations§
impl Freeze for UpdateClusterConfigurationRequest
impl RefUnwindSafe for UpdateClusterConfigurationRequest
impl Send for UpdateClusterConfigurationRequest
impl Sync for UpdateClusterConfigurationRequest
impl Unpin for UpdateClusterConfigurationRequest
impl UnwindSafe for UpdateClusterConfigurationRequest
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