#[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
source§impl PartialEq for ClusterParameterGroupStatus
impl PartialEq for ClusterParameterGroupStatus
source§fn eq(&self, other: &ClusterParameterGroupStatus) -> bool
fn eq(&self, other: &ClusterParameterGroupStatus) -> bool
self
and other
values to be equal, and is used
by ==
.