#[non_exhaustive]pub struct ClusterParameterGroupStatusBuilder { /* private fields */ }
Expand description
A builder for ClusterParameterGroupStatus
.
Implementations§
source§impl ClusterParameterGroupStatusBuilder
impl ClusterParameterGroupStatusBuilder
sourcepub fn parameter_group_name(self, input: impl Into<String>) -> Self
pub fn parameter_group_name(self, input: impl Into<String>) -> Self
The name of the cluster parameter group.
sourcepub fn set_parameter_group_name(self, input: Option<String>) -> Self
pub fn set_parameter_group_name(self, input: Option<String>) -> Self
The name of the cluster parameter group.
sourcepub fn get_parameter_group_name(&self) -> &Option<String>
pub fn get_parameter_group_name(&self) -> &Option<String>
The name of the cluster parameter group.
sourcepub fn parameter_apply_status(self, input: impl Into<String>) -> Self
pub fn parameter_apply_status(self, input: impl Into<String>) -> Self
The status of parameter updates.
sourcepub fn set_parameter_apply_status(self, input: Option<String>) -> Self
pub fn set_parameter_apply_status(self, input: Option<String>) -> Self
The status of parameter updates.
sourcepub fn get_parameter_apply_status(&self) -> &Option<String>
pub fn get_parameter_apply_status(&self) -> &Option<String>
The status of parameter updates.
sourcepub fn cluster_parameter_status_list(
self,
input: ClusterParameterStatus,
) -> Self
pub fn cluster_parameter_status_list( self, input: ClusterParameterStatus, ) -> Self
Appends an item to cluster_parameter_status_list
.
To override the contents of this collection use set_cluster_parameter_status_list
.
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.
sourcepub fn set_cluster_parameter_status_list(
self,
input: Option<Vec<ClusterParameterStatus>>,
) -> Self
pub fn set_cluster_parameter_status_list( self, input: Option<Vec<ClusterParameterStatus>>, ) -> Self
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.
sourcepub fn get_cluster_parameter_status_list(
&self,
) -> &Option<Vec<ClusterParameterStatus>>
pub fn get_cluster_parameter_status_list( &self, ) -> &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.
sourcepub fn build(self) -> ClusterParameterGroupStatus
pub fn build(self) -> ClusterParameterGroupStatus
Consumes the builder and constructs a ClusterParameterGroupStatus
.
Trait Implementations§
source§impl Clone for ClusterParameterGroupStatusBuilder
impl Clone for ClusterParameterGroupStatusBuilder
source§fn clone(&self) -> ClusterParameterGroupStatusBuilder
fn clone(&self) -> ClusterParameterGroupStatusBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ClusterParameterGroupStatusBuilder
impl Default for ClusterParameterGroupStatusBuilder
source§fn default() -> ClusterParameterGroupStatusBuilder
fn default() -> ClusterParameterGroupStatusBuilder
source§impl PartialEq for ClusterParameterGroupStatusBuilder
impl PartialEq for ClusterParameterGroupStatusBuilder
source§fn eq(&self, other: &ClusterParameterGroupStatusBuilder) -> bool
fn eq(&self, other: &ClusterParameterGroupStatusBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ClusterParameterGroupStatusBuilder
Auto Trait Implementations§
impl Freeze for ClusterParameterGroupStatusBuilder
impl RefUnwindSafe for ClusterParameterGroupStatusBuilder
impl Send for ClusterParameterGroupStatusBuilder
impl Sync for ClusterParameterGroupStatusBuilder
impl Unpin for ClusterParameterGroupStatusBuilder
impl UnwindSafe for ClusterParameterGroupStatusBuilder
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