Struct aws_sdk_elasticache::types::NodeGroupUpdateStatus
source · #[non_exhaustive]pub struct NodeGroupUpdateStatus {
pub node_group_id: Option<String>,
pub node_group_member_update_status: Option<Vec<NodeGroupMemberUpdateStatus>>,
}
Expand description
The status of the service update on the node group
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.node_group_id: Option<String>
The ID of the node group
node_group_member_update_status: Option<Vec<NodeGroupMemberUpdateStatus>>
The status of the service update on the node group member
Implementations§
source§impl NodeGroupUpdateStatus
impl NodeGroupUpdateStatus
sourcepub fn node_group_id(&self) -> Option<&str>
pub fn node_group_id(&self) -> Option<&str>
The ID of the node group
sourcepub fn node_group_member_update_status(&self) -> &[NodeGroupMemberUpdateStatus]
pub fn node_group_member_update_status(&self) -> &[NodeGroupMemberUpdateStatus]
The status of the service update on the node group member
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .node_group_member_update_status.is_none()
.
source§impl NodeGroupUpdateStatus
impl NodeGroupUpdateStatus
sourcepub fn builder() -> NodeGroupUpdateStatusBuilder
pub fn builder() -> NodeGroupUpdateStatusBuilder
Creates a new builder-style object to manufacture NodeGroupUpdateStatus
.
Trait Implementations§
source§impl Clone for NodeGroupUpdateStatus
impl Clone for NodeGroupUpdateStatus
source§fn clone(&self) -> NodeGroupUpdateStatus
fn clone(&self) -> NodeGroupUpdateStatus
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 NodeGroupUpdateStatus
impl Debug for NodeGroupUpdateStatus
source§impl PartialEq for NodeGroupUpdateStatus
impl PartialEq for NodeGroupUpdateStatus
source§fn eq(&self, other: &NodeGroupUpdateStatus) -> bool
fn eq(&self, other: &NodeGroupUpdateStatus) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for NodeGroupUpdateStatus
Auto Trait Implementations§
impl Freeze for NodeGroupUpdateStatus
impl RefUnwindSafe for NodeGroupUpdateStatus
impl Send for NodeGroupUpdateStatus
impl Sync for NodeGroupUpdateStatus
impl Unpin for NodeGroupUpdateStatus
impl UnwindSafe for NodeGroupUpdateStatus
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
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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.