pub struct CacheNodeUpdateStatus {
pub cache_node_id: Option<String>,
pub node_deletion_date: Option<String>,
pub node_update_end_date: Option<String>,
pub node_update_initiated_by: Option<String>,
pub node_update_initiated_date: Option<String>,
pub node_update_start_date: Option<String>,
pub node_update_status: Option<String>,
pub node_update_status_modified_date: Option<String>,
}
Expand description
The status of the service update on the cache node
Fields§
§cache_node_id: Option<String>
The node ID of the cache cluster
node_deletion_date: Option<String>
The deletion date of the node
node_update_end_date: Option<String>
The end date of the update for a node
node_update_initiated_by: Option<String>
Reflects whether the update was initiated by the customer or automatically applied
node_update_initiated_date: Option<String>
The date when the update is triggered
node_update_start_date: Option<String>
The start date of the update for a node
node_update_status: Option<String>
The update status of the node
node_update_status_modified_date: Option<String>
The date when the NodeUpdateStatus was last modified>
Trait Implementations§
Source§impl Clone for CacheNodeUpdateStatus
impl Clone for CacheNodeUpdateStatus
Source§fn clone(&self) -> CacheNodeUpdateStatus
fn clone(&self) -> CacheNodeUpdateStatus
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 CacheNodeUpdateStatus
impl Debug for CacheNodeUpdateStatus
Source§impl Default for CacheNodeUpdateStatus
impl Default for CacheNodeUpdateStatus
Source§fn default() -> CacheNodeUpdateStatus
fn default() -> CacheNodeUpdateStatus
Returns the “default value” for a type. Read more
Source§impl PartialEq for CacheNodeUpdateStatus
impl PartialEq for CacheNodeUpdateStatus
impl StructuralPartialEq for CacheNodeUpdateStatus
Auto Trait Implementations§
impl Freeze for CacheNodeUpdateStatus
impl RefUnwindSafe for CacheNodeUpdateStatus
impl Send for CacheNodeUpdateStatus
impl Sync for CacheNodeUpdateStatus
impl Unpin for CacheNodeUpdateStatus
impl UnwindSafe for CacheNodeUpdateStatus
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