Struct rusoto_elasticache::ReplicationGroupPendingModifiedValues [] [src]

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

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

Fields

Indicates the status of Multi-AZ with automatic failover for this Redis replication group.

Amazon ElastiCache for Redis does not support Multi-AZ with automatic failover on:

  • Redis versions earlier than 2.8.6.

  • Redis (cluster mode disabled): T1 and T2 cache node types.

  • Redis (cluster mode enabled): T1 node types.

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

The status of an online resharding operation.

Trait Implementations

impl Default for ReplicationGroupPendingModifiedValues
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for ReplicationGroupPendingModifiedValues
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ReplicationGroupPendingModifiedValues
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations