#[non_exhaustive]pub struct NodeGroupMemberUpdateStatus {
pub cache_cluster_id: Option<String>,
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 node group member
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_cluster_id: Option<String>
The cache cluster ID
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 NodeGroupMemberUpdateStatus
impl NodeGroupMemberUpdateStatus
sourcepub fn cache_cluster_id(&self) -> Option<&str>
pub fn cache_cluster_id(&self) -> Option<&str>
The cache cluster ID
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 NodeGroupMemberUpdateStatus
impl NodeGroupMemberUpdateStatus
sourcepub fn builder() -> NodeGroupMemberUpdateStatusBuilder
pub fn builder() -> NodeGroupMemberUpdateStatusBuilder
Creates a new builder-style object to manufacture NodeGroupMemberUpdateStatus
.
Trait Implementations§
source§impl Clone for NodeGroupMemberUpdateStatus
impl Clone for NodeGroupMemberUpdateStatus
source§fn clone(&self) -> NodeGroupMemberUpdateStatus
fn clone(&self) -> NodeGroupMemberUpdateStatus
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for NodeGroupMemberUpdateStatus
impl Debug for NodeGroupMemberUpdateStatus
source§impl PartialEq for NodeGroupMemberUpdateStatus
impl PartialEq for NodeGroupMemberUpdateStatus
source§fn eq(&self, other: &NodeGroupMemberUpdateStatus) -> bool
fn eq(&self, other: &NodeGroupMemberUpdateStatus) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for NodeGroupMemberUpdateStatus
Auto Trait Implementations§
impl Freeze for NodeGroupMemberUpdateStatus
impl RefUnwindSafe for NodeGroupMemberUpdateStatus
impl Send for NodeGroupMemberUpdateStatus
impl Sync for NodeGroupMemberUpdateStatus
impl Unpin for NodeGroupMemberUpdateStatus
impl UnwindSafe for NodeGroupMemberUpdateStatus
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more