pub struct CacheParameterGroupStatus {
pub cache_node_ids_to_reboot: Option<Vec<String>>,
pub cache_parameter_group_name: Option<String>,
pub parameter_apply_status: Option<String>,
}
Expand description
Status of the cache parameter group.
Fields§
§cache_node_ids_to_reboot: Option<Vec<String>>
A list of the cache node IDs which need to be rebooted for parameter changes to be applied. A node ID is a numeric identifier (0001, 0002, etc.).
cache_parameter_group_name: Option<String>
The name of the cache parameter group.
parameter_apply_status: Option<String>
The status of parameter updates.
Trait Implementations§
Source§impl Clone for CacheParameterGroupStatus
impl Clone for CacheParameterGroupStatus
Source§fn clone(&self) -> CacheParameterGroupStatus
fn clone(&self) -> CacheParameterGroupStatus
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 CacheParameterGroupStatus
impl Debug for CacheParameterGroupStatus
Source§impl Default for CacheParameterGroupStatus
impl Default for CacheParameterGroupStatus
Source§fn default() -> CacheParameterGroupStatus
fn default() -> CacheParameterGroupStatus
Returns the “default value” for a type. Read more
impl StructuralPartialEq for CacheParameterGroupStatus
Auto Trait Implementations§
impl Freeze for CacheParameterGroupStatus
impl RefUnwindSafe for CacheParameterGroupStatus
impl Send for CacheParameterGroupStatus
impl Sync for CacheParameterGroupStatus
impl Unpin for CacheParameterGroupStatus
impl UnwindSafe for CacheParameterGroupStatus
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