pub struct IncreaseReplicationFactorRequest {
pub availability_zones: Option<Vec<String>>,
pub cluster_name: String,
pub new_replication_factor: i64,
}
Fields§
§availability_zones: Option<Vec<String>>
The Availability Zones (AZs) in which the cluster nodes will be created. All nodes belonging to the cluster are placed in these Availability Zones. Use this parameter if you want to distribute the nodes across multiple AZs.
cluster_name: String
The name of the DAX cluster that will receive additional nodes.
new_replication_factor: i64
The new number of nodes for the DAX cluster.
Trait Implementations§
Source§impl Clone for IncreaseReplicationFactorRequest
impl Clone for IncreaseReplicationFactorRequest
Source§fn clone(&self) -> IncreaseReplicationFactorRequest
fn clone(&self) -> IncreaseReplicationFactorRequest
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 IncreaseReplicationFactorRequest
impl Default for IncreaseReplicationFactorRequest
Source§fn default() -> IncreaseReplicationFactorRequest
fn default() -> IncreaseReplicationFactorRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for IncreaseReplicationFactorRequest
impl PartialEq for IncreaseReplicationFactorRequest
Source§fn eq(&self, other: &IncreaseReplicationFactorRequest) -> bool
fn eq(&self, other: &IncreaseReplicationFactorRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for IncreaseReplicationFactorRequest
Auto Trait Implementations§
impl Freeze for IncreaseReplicationFactorRequest
impl RefUnwindSafe for IncreaseReplicationFactorRequest
impl Send for IncreaseReplicationFactorRequest
impl Sync for IncreaseReplicationFactorRequest
impl Unpin for IncreaseReplicationFactorRequest
impl UnwindSafe for IncreaseReplicationFactorRequest
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