pub struct IncreaseReplicaCountMessage {
pub apply_immediately: bool,
pub new_replica_count: Option<i64>,
pub replica_configuration: Option<Vec<ConfigureShard>>,
pub replication_group_id: String,
}
Fields§
§apply_immediately: bool
If True
, the number of replica nodes is increased immediately. ApplyImmediately=False
is not currently supported.
new_replica_count: Option<i64>
The number of read replica nodes you want at the completion of this operation. For Redis (cluster mode disabled) replication groups, this is the number of replica nodes in the replication group. For Redis (cluster mode enabled) replication groups, this is the number of replica nodes in each of the replication group's node groups.
replica_configuration: Option<Vec<ConfigureShard>>
A list of ConfigureShard
objects that can be used to configure each shard in a Redis (cluster mode enabled) replication group. The ConfigureShard
has three members: NewReplicaCount
, NodeGroupId
, and PreferredAvailabilityZones
.
replication_group_id: String
The id of the replication group to which you want to add replica nodes.
Trait Implementations§
Source§impl Clone for IncreaseReplicaCountMessage
impl Clone for IncreaseReplicaCountMessage
Source§fn clone(&self) -> IncreaseReplicaCountMessage
fn clone(&self) -> IncreaseReplicaCountMessage
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 IncreaseReplicaCountMessage
impl Debug for IncreaseReplicaCountMessage
Source§impl Default for IncreaseReplicaCountMessage
impl Default for IncreaseReplicaCountMessage
Source§fn default() -> IncreaseReplicaCountMessage
fn default() -> IncreaseReplicaCountMessage
Returns the “default value” for a type. Read more
impl StructuralPartialEq for IncreaseReplicaCountMessage
Auto Trait Implementations§
impl Freeze for IncreaseReplicaCountMessage
impl RefUnwindSafe for IncreaseReplicaCountMessage
impl Send for IncreaseReplicaCountMessage
impl Sync for IncreaseReplicaCountMessage
impl Unpin for IncreaseReplicaCountMessage
impl UnwindSafe for IncreaseReplicaCountMessage
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