Struct rusoto_elasticache::PendingModifiedValues[][src]

pub struct PendingModifiedValues {
    pub cache_node_ids_to_remove: Option<Vec<String>>,
    pub cache_node_type: Option<String>,
    pub engine_version: Option<String>,
    pub num_cache_nodes: Option<i64>,
}

A group of settings that are applied to the cluster in the future, or that are currently being applied.

Fields

A list of cache node IDs that are being removed (or will be removed) from the cluster. A node ID is a numeric identifier (0001, 0002, etc.).

The cache node type that this cluster or replication group is scaled to.

The new cache engine version that the cluster runs.

The new number of cache nodes for the cluster.

For clusters running Redis, this value must be 1. For clusters running Memcached, this value must be between 1 and 20.

Trait Implementations

impl Default for PendingModifiedValues
[src]

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

impl Debug for PendingModifiedValues
[src]

Formats the value using the given formatter. Read more

impl Clone for PendingModifiedValues
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PendingModifiedValues
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations