Struct rusoto_elasticache::ReplicationGroup [] [src]

pub struct ReplicationGroup {
    pub automatic_failover: Option<String>,
    pub cache_node_type: Option<String>,
    pub cluster_enabled: Option<bool>,
    pub configuration_endpoint: Option<Endpoint>,
    pub description: Option<String>,
    pub member_clusters: Option<Vec<String>>,
    pub node_groups: Option<Vec<NodeGroup>>,
    pub pending_modified_values: Option<ReplicationGroupPendingModifiedValues>,
    pub replication_group_id: Option<String>,
    pub snapshot_retention_limit: Option<i64>,
    pub snapshot_window: Option<String>,
    pub snapshotting_cluster_id: Option<String>,
    pub status: Option<String>,
}

Contains all of the attributes of a specific Redis replication group.

Fields

Indicates the status of Multi-AZ for this replication group.

ElastiCache Multi-AZ replication groups are not supported 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 name of the compute and memory capacity node type for each node in the replication group.

A flag indicating whether or not this replication group is cluster enabled; i.e., whether its data can be partitioned across multiple shards (API/CLI: node groups).

Valid values: true | false

The configuration endpoint for this replicaiton group. Use the configuration endpoint to connect to this replication group.

The description of the replication group.

The names of all the cache clusters that are part of this replication group.

A single element list with information about the nodes in the replication group.

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

The identifier for the replication group.

The number of days for which ElastiCache retains automatic cache cluster snapshots before deleting them. For example, if you set SnapshotRetentionLimit to 5, a snapshot that was taken today is retained for 5 days before being deleted.

If the value of SnapshotRetentionLimit is set to zero (0), backups are turned off.

The daily time range (in UTC) during which ElastiCache begins taking a daily snapshot of your node group (shard).

Example: 05:00-09:00

If you do not specify this parameter, ElastiCache automatically chooses an appropriate time range.

Note: This parameter is only valid if the Engine parameter is redis.

The cache cluster ID that is used as the daily snapshot source for the replication group.

The current state of this replication group - creating, available, modifying, deleting, create-failed, snapshotting.

Trait Implementations

impl Default for ReplicationGroup
[src]

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

impl Debug for ReplicationGroup
[src]

Formats the value using the given formatter.

impl Clone for ReplicationGroup
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more