#[non_exhaustive]pub struct ClusterParameterGroupStatus {
pub parameter_group_name: Option<String>,
pub parameter_apply_status: Option<String>,
pub cluster_parameter_status_list: Option<Vec<ClusterParameterStatus>>,
}
Expand description
Describes 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 cluster parameter group.
parameter_apply_status: Option<String>
The status of parameter updates.
cluster_parameter_status_list: Option<Vec<ClusterParameterStatus>>
The list of parameter statuses.
For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
Implementations§
source§impl ClusterParameterGroupStatus
impl ClusterParameterGroupStatus
sourcepub fn parameter_group_name(&self) -> Option<&str>
pub fn parameter_group_name(&self) -> Option<&str>
The name of the cluster 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 cluster_parameter_status_list(&self) -> &[ClusterParameterStatus]
pub fn cluster_parameter_status_list(&self) -> &[ClusterParameterStatus]
The list of parameter statuses.
For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .cluster_parameter_status_list.is_none()
.
source§impl ClusterParameterGroupStatus
impl ClusterParameterGroupStatus
sourcepub fn builder() -> ClusterParameterGroupStatusBuilder
pub fn builder() -> ClusterParameterGroupStatusBuilder
Creates a new builder-style object to manufacture ClusterParameterGroupStatus
.
Trait Implementations§
source§impl Clone for ClusterParameterGroupStatus
impl Clone for ClusterParameterGroupStatus
source§fn clone(&self) -> ClusterParameterGroupStatus
fn clone(&self) -> ClusterParameterGroupStatus
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ClusterParameterGroupStatus
impl Debug for ClusterParameterGroupStatus
impl StructuralPartialEq for ClusterParameterGroupStatus
Auto Trait Implementations§
impl Freeze for ClusterParameterGroupStatus
impl RefUnwindSafe for ClusterParameterGroupStatus
impl Send for ClusterParameterGroupStatus
impl Sync for ClusterParameterGroupStatus
impl Unpin for ClusterParameterGroupStatus
impl UnwindSafe for ClusterParameterGroupStatus
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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