Struct aws_sdk_dax::types::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
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.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§
source§impl 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) -> &[String]
pub fn node_ids_to_reboot(&self) -> &[String]
The node IDs of one or more nodes to be rebooted.
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_ids_to_reboot.is_none()
.
source§impl ParameterGroupStatus
impl ParameterGroupStatus
sourcepub fn builder() -> ParameterGroupStatusBuilder
pub fn builder() -> ParameterGroupStatusBuilder
Creates a new builder-style object to manufacture ParameterGroupStatus
.
Trait Implementations§
source§impl Clone for ParameterGroupStatus
impl Clone for ParameterGroupStatus
source§fn clone(&self) -> ParameterGroupStatus
fn clone(&self) -> ParameterGroupStatus
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 ParameterGroupStatus
impl Debug for ParameterGroupStatus
source§impl PartialEq for ParameterGroupStatus
impl PartialEq for ParameterGroupStatus
source§fn 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 ==
.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§
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> 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>
Creates a shared type from an unshared type.