#[non_exhaustive]pub struct IncreaseReplicationFactorInput {
pub cluster_name: Option<String>,
pub new_replication_factor: Option<i32>,
pub availability_zones: Option<Vec<String>>,
}
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.cluster_name: Option<String>
The name of the DAX cluster that will receive additional nodes.
new_replication_factor: Option<i32>
The new number of nodes for the DAX cluster.
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.
Implementations§
source§impl IncreaseReplicationFactorInput
impl IncreaseReplicationFactorInput
sourcepub fn cluster_name(&self) -> Option<&str>
pub fn cluster_name(&self) -> Option<&str>
The name of the DAX cluster that will receive additional nodes.
sourcepub fn new_replication_factor(&self) -> Option<i32>
pub fn new_replication_factor(&self) -> Option<i32>
The new number of nodes for the DAX cluster.
sourcepub fn availability_zones(&self) -> &[String]
pub fn availability_zones(&self) -> &[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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .availability_zones.is_none()
.
source§impl IncreaseReplicationFactorInput
impl IncreaseReplicationFactorInput
sourcepub fn builder() -> IncreaseReplicationFactorInputBuilder
pub fn builder() -> IncreaseReplicationFactorInputBuilder
Creates a new builder-style object to manufacture IncreaseReplicationFactorInput
.
Trait Implementations§
source§impl Clone for IncreaseReplicationFactorInput
impl Clone for IncreaseReplicationFactorInput
source§fn clone(&self) -> IncreaseReplicationFactorInput
fn clone(&self) -> IncreaseReplicationFactorInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for IncreaseReplicationFactorInput
impl PartialEq for IncreaseReplicationFactorInput
source§fn eq(&self, other: &IncreaseReplicationFactorInput) -> bool
fn eq(&self, other: &IncreaseReplicationFactorInput) -> bool
self
and other
values to be equal, and is used
by ==
.