pub struct PendingModifiedValues {
pub auth_token_status: Option<String>,
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>,
}
Expand description
A group of settings that are applied to the cluster in the future, or that are currently being applied.
Fields§
§auth_token_status: Option<String>
The auth token status
cache_node_ids_to_remove: Option<Vec<String>>
A list of cache node IDs that are being removed (or will be removed) from the cluster. A node ID is a 4-digit numeric identifier (0001, 0002, etc.).
cache_node_type: Option<String>
The cache node type that this cluster or replication group is scaled to.
engine_version: Option<String>
The new cache engine version that the cluster runs.
num_cache_nodes: Option<i64>
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§
Source§impl Clone for PendingModifiedValues
impl Clone for PendingModifiedValues
Source§fn clone(&self) -> PendingModifiedValues
fn clone(&self) -> PendingModifiedValues
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PendingModifiedValues
impl Debug for PendingModifiedValues
Source§impl Default for PendingModifiedValues
impl Default for PendingModifiedValues
Source§fn default() -> PendingModifiedValues
fn default() -> PendingModifiedValues
Returns the “default value” for a type. Read more
Source§impl PartialEq for PendingModifiedValues
impl PartialEq for PendingModifiedValues
impl StructuralPartialEq for PendingModifiedValues
Auto Trait Implementations§
impl Freeze for PendingModifiedValues
impl RefUnwindSafe for PendingModifiedValues
impl Send for PendingModifiedValues
impl Sync for PendingModifiedValues
impl Unpin for PendingModifiedValues
impl UnwindSafe for PendingModifiedValues
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more