#[non_exhaustive]pub struct AwsRedshiftClusterClusterParameterGroup {
pub cluster_parameter_status_list: Option<Vec<AwsRedshiftClusterClusterParameterStatus>>,
pub parameter_apply_status: Option<String>,
pub parameter_group_name: Option<String>,
}
Expand description
A cluster parameter group that is associated with an Amazon Redshift cluster.
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.cluster_parameter_status_list: Option<Vec<AwsRedshiftClusterClusterParameterStatus>>
The list of parameter statuses.
parameter_apply_status: Option<String>
The status of updates to the parameters.
parameter_group_name: Option<String>
The name of the parameter group.
Implementations§
source§impl AwsRedshiftClusterClusterParameterGroup
impl AwsRedshiftClusterClusterParameterGroup
sourcepub fn cluster_parameter_status_list(
&self
) -> Option<&[AwsRedshiftClusterClusterParameterStatus]>
pub fn cluster_parameter_status_list( &self ) -> Option<&[AwsRedshiftClusterClusterParameterStatus]>
The list of parameter statuses.
sourcepub fn parameter_apply_status(&self) -> Option<&str>
pub fn parameter_apply_status(&self) -> Option<&str>
The status of updates to the parameters.
sourcepub fn parameter_group_name(&self) -> Option<&str>
pub fn parameter_group_name(&self) -> Option<&str>
The name of the parameter group.
source§impl AwsRedshiftClusterClusterParameterGroup
impl AwsRedshiftClusterClusterParameterGroup
sourcepub fn builder() -> AwsRedshiftClusterClusterParameterGroupBuilder
pub fn builder() -> AwsRedshiftClusterClusterParameterGroupBuilder
Creates a new builder-style object to manufacture AwsRedshiftClusterClusterParameterGroup
.
Trait Implementations§
source§impl Clone for AwsRedshiftClusterClusterParameterGroup
impl Clone for AwsRedshiftClusterClusterParameterGroup
source§fn clone(&self) -> AwsRedshiftClusterClusterParameterGroup
fn clone(&self) -> AwsRedshiftClusterClusterParameterGroup
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 PartialEq for AwsRedshiftClusterClusterParameterGroup
impl PartialEq for AwsRedshiftClusterClusterParameterGroup
source§fn eq(&self, other: &AwsRedshiftClusterClusterParameterGroup) -> bool
fn eq(&self, other: &AwsRedshiftClusterClusterParameterGroup) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsRedshiftClusterClusterParameterGroup
Auto Trait Implementations§
impl RefUnwindSafe for AwsRedshiftClusterClusterParameterGroup
impl Send for AwsRedshiftClusterClusterParameterGroup
impl Sync for AwsRedshiftClusterClusterParameterGroup
impl Unpin for AwsRedshiftClusterClusterParameterGroup
impl UnwindSafe for AwsRedshiftClusterClusterParameterGroup
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