[][src]Struct rusoto_elasticache::DecreaseReplicaCountMessage

pub struct DecreaseReplicaCountMessage {
    pub apply_immediately: bool,
    pub new_replica_count: Option<i64>,
    pub replica_configuration: Option<Vec<ConfigureShard>>,
    pub replicas_to_remove: Option<Vec<String>>,
    pub replication_group_id: String,
}

Fields

apply_immediately: bool

If True, the number of replica nodes is decreased 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.

The minimum number of replicas in a shard or replication group is:

  • Redis (cluster mode disabled)

    • If Multi-AZ is enabled: 1

    • If Multi-AZ is not enabled: 0

  • Redis (cluster mode enabled): 0 (though you will not be able to failover to a replica if your primary node fails)

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.

replicas_to_remove: Option<Vec<String>>

A list of the node ids to remove from the replication group or node group (shard).

replication_group_id: String

The id of the replication group from which you want to remove replica nodes.

Trait Implementations

impl Clone for DecreaseReplicaCountMessage[src]

impl Debug for DecreaseReplicaCountMessage[src]

impl Default for DecreaseReplicaCountMessage[src]

impl PartialEq<DecreaseReplicaCountMessage> for DecreaseReplicaCountMessage[src]

impl StructuralPartialEq for DecreaseReplicaCountMessage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.