Struct aws_sdk_elasticache::types::CacheNodeUpdateStatus
source · #[non_exhaustive]pub struct CacheNodeUpdateStatus {
pub cache_node_id: Option<String>,
pub node_update_status: Option<NodeUpdateStatus>,
pub node_deletion_date: Option<DateTime>,
pub node_update_start_date: Option<DateTime>,
pub node_update_end_date: Option<DateTime>,
pub node_update_initiated_by: Option<NodeUpdateInitiatedBy>,
pub node_update_initiated_date: Option<DateTime>,
pub node_update_status_modified_date: Option<DateTime>,
}
Expand description
The status of the service update on the cache node
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.cache_node_id: Option<String>
The node ID of the cache cluster
node_update_status: Option<NodeUpdateStatus>
The update status of the node
node_deletion_date: Option<DateTime>
The deletion date of the node
node_update_start_date: Option<DateTime>
The start date of the update for a node
node_update_end_date: Option<DateTime>
The end date of the update for a node
node_update_initiated_by: Option<NodeUpdateInitiatedBy>
Reflects whether the update was initiated by the customer or automatically applied
node_update_initiated_date: Option<DateTime>
The date when the update is triggered
node_update_status_modified_date: Option<DateTime>
The date when the NodeUpdateStatus was last modified>
Implementations§
source§impl CacheNodeUpdateStatus
impl CacheNodeUpdateStatus
sourcepub fn cache_node_id(&self) -> Option<&str>
pub fn cache_node_id(&self) -> Option<&str>
The node ID of the cache cluster
sourcepub fn node_update_status(&self) -> Option<&NodeUpdateStatus>
pub fn node_update_status(&self) -> Option<&NodeUpdateStatus>
The update status of the node
sourcepub fn node_deletion_date(&self) -> Option<&DateTime>
pub fn node_deletion_date(&self) -> Option<&DateTime>
The deletion date of the node
sourcepub fn node_update_start_date(&self) -> Option<&DateTime>
pub fn node_update_start_date(&self) -> Option<&DateTime>
The start date of the update for a node
sourcepub fn node_update_end_date(&self) -> Option<&DateTime>
pub fn node_update_end_date(&self) -> Option<&DateTime>
The end date of the update for a node
sourcepub fn node_update_initiated_by(&self) -> Option<&NodeUpdateInitiatedBy>
pub fn node_update_initiated_by(&self) -> Option<&NodeUpdateInitiatedBy>
Reflects whether the update was initiated by the customer or automatically applied
sourcepub fn node_update_initiated_date(&self) -> Option<&DateTime>
pub fn node_update_initiated_date(&self) -> Option<&DateTime>
The date when the update is triggered
sourcepub fn node_update_status_modified_date(&self) -> Option<&DateTime>
pub fn node_update_status_modified_date(&self) -> Option<&DateTime>
The date when the NodeUpdateStatus was last modified>
source§impl CacheNodeUpdateStatus
impl CacheNodeUpdateStatus
sourcepub fn builder() -> CacheNodeUpdateStatusBuilder
pub fn builder() -> CacheNodeUpdateStatusBuilder
Creates a new builder-style object to manufacture CacheNodeUpdateStatus
.
Trait Implementations§
source§impl Clone for CacheNodeUpdateStatus
impl Clone for CacheNodeUpdateStatus
source§fn clone(&self) -> CacheNodeUpdateStatus
fn clone(&self) -> CacheNodeUpdateStatus
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CacheNodeUpdateStatus
impl Debug for CacheNodeUpdateStatus
source§impl PartialEq for CacheNodeUpdateStatus
impl PartialEq for CacheNodeUpdateStatus
source§fn eq(&self, other: &CacheNodeUpdateStatus) -> bool
fn eq(&self, other: &CacheNodeUpdateStatus) -> bool
self
and other
values to be equal, and is used
by ==
.