Struct aws_sdk_dax::model::ParameterGroupStatus
source · [−]#[non_exhaustive]pub struct ParameterGroupStatus {
pub parameter_group_name: Option<String>,
pub parameter_apply_status: Option<String>,
pub node_ids_to_reboot: Option<Vec<String>>,
}
Expand description
The status of a parameter group.
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.parameter_group_name: Option<String>
The name of the parameter group.
parameter_apply_status: Option<String>
The status of parameter updates.
node_ids_to_reboot: Option<Vec<String>>
The node IDs of one or more nodes to be rebooted.
Implementations
sourceimpl ParameterGroupStatus
impl ParameterGroupStatus
sourcepub fn parameter_group_name(&self) -> Option<&str>
pub fn parameter_group_name(&self) -> Option<&str>
The name of the parameter group.
sourcepub fn parameter_apply_status(&self) -> Option<&str>
pub fn parameter_apply_status(&self) -> Option<&str>
The status of parameter updates.
sourcepub fn node_ids_to_reboot(&self) -> Option<&[String]>
pub fn node_ids_to_reboot(&self) -> Option<&[String]>
The node IDs of one or more nodes to be rebooted.
sourceimpl ParameterGroupStatus
impl ParameterGroupStatus
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ParameterGroupStatus
.
Trait Implementations
sourceimpl Clone for ParameterGroupStatus
impl Clone for ParameterGroupStatus
sourcefn clone(&self) -> ParameterGroupStatus
fn clone(&self) -> ParameterGroupStatus
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 ParameterGroupStatus
impl Debug for ParameterGroupStatus
sourceimpl PartialEq<ParameterGroupStatus> for ParameterGroupStatus
impl PartialEq<ParameterGroupStatus> for ParameterGroupStatus
sourcefn eq(&self, other: &ParameterGroupStatus) -> bool
fn eq(&self, other: &ParameterGroupStatus) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ParameterGroupStatus) -> bool
fn ne(&self, other: &ParameterGroupStatus) -> bool
This method tests for !=
.
impl StructuralPartialEq for ParameterGroupStatus
Auto Trait Implementations
impl RefUnwindSafe for ParameterGroupStatus
impl Send for ParameterGroupStatus
impl Sync for ParameterGroupStatus
impl Unpin for ParameterGroupStatus
impl UnwindSafe for ParameterGroupStatus
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