#[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
sourceimpl 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
sourceimpl NodeGroupMemberUpdateStatus
impl NodeGroupMemberUpdateStatus
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture NodeGroupMemberUpdateStatus
Trait Implementations
sourceimpl Clone for NodeGroupMemberUpdateStatus
impl Clone for NodeGroupMemberUpdateStatus
sourcefn clone(&self) -> NodeGroupMemberUpdateStatus
fn clone(&self) -> NodeGroupMemberUpdateStatus
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for NodeGroupMemberUpdateStatus
impl Debug for NodeGroupMemberUpdateStatus
sourceimpl PartialEq<NodeGroupMemberUpdateStatus> for NodeGroupMemberUpdateStatus
impl PartialEq<NodeGroupMemberUpdateStatus> for NodeGroupMemberUpdateStatus
sourcefn eq(&self, other: &NodeGroupMemberUpdateStatus) -> bool
fn eq(&self, other: &NodeGroupMemberUpdateStatus) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &NodeGroupMemberUpdateStatus) -> bool
fn ne(&self, other: &NodeGroupMemberUpdateStatus) -> bool
This method tests for !=
.
impl StructuralPartialEq for NodeGroupMemberUpdateStatus
Auto Trait Implementations
impl RefUnwindSafe for NodeGroupMemberUpdateStatus
impl Send for NodeGroupMemberUpdateStatus
impl Sync for NodeGroupMemberUpdateStatus
impl Unpin for NodeGroupMemberUpdateStatus
impl UnwindSafe for NodeGroupMemberUpdateStatus
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more