[][src]Struct rusoto_elasticache::ReplicationGroupPendingModifiedValues

pub struct ReplicationGroupPendingModifiedValues {
    pub auth_token_status: Option<String>,
    pub automatic_failover_status: Option<String>,
    pub primary_cluster_id: Option<String>,
    pub resharding: Option<ReshardingStatus>,
    pub user_groups: Option<UserGroupsUpdateStatus>,
}

The settings to be applied to the Redis replication group, either immediately or during the next maintenance window.

Fields

auth_token_status: Option<String>

The auth token status

automatic_failover_status: Option<String>

Indicates the status of automatic failover for this Redis replication group.

primary_cluster_id: Option<String>

The primary cluster ID that is applied immediately (if --apply-immediately was specified), or during the next maintenance window.

resharding: Option<ReshardingStatus>

The status of an online resharding operation.

user_groups: Option<UserGroupsUpdateStatus>

The user groups being modified.

Trait Implementations

impl Clone for ReplicationGroupPendingModifiedValues[src]

impl Debug for ReplicationGroupPendingModifiedValues[src]

impl Default for ReplicationGroupPendingModifiedValues[src]

impl PartialEq<ReplicationGroupPendingModifiedValues> for ReplicationGroupPendingModifiedValues[src]

impl StructuralPartialEq for ReplicationGroupPendingModifiedValues[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, 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.