Struct aws_sdk_redshift::operation::reset_cluster_parameter_group::builders::ResetClusterParameterGroupOutputBuilder
source · #[non_exhaustive]pub struct ResetClusterParameterGroupOutputBuilder { /* private fields */ }
Expand description
A builder for ResetClusterParameterGroupOutput
.
Implementations§
source§impl ResetClusterParameterGroupOutputBuilder
impl ResetClusterParameterGroupOutputBuilder
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_group_status(self, input: impl Into<String>) -> Self
pub fn parameter_group_status(self, input: impl Into<String>) -> Self
The status of the parameter group. For example, if you made a change to a parameter group name-value pair, then the change could be pending a reboot of an associated cluster.
sourcepub fn set_parameter_group_status(self, input: Option<String>) -> Self
pub fn set_parameter_group_status(self, input: Option<String>) -> Self
The status of the parameter group. For example, if you made a change to a parameter group name-value pair, then the change could be pending a reboot of an associated cluster.
sourcepub fn get_parameter_group_status(&self) -> &Option<String>
pub fn get_parameter_group_status(&self) -> &Option<String>
The status of the parameter group. For example, if you made a change to a parameter group name-value pair, then the change could be pending a reboot of an associated cluster.
sourcepub fn build(self) -> ResetClusterParameterGroupOutput
pub fn build(self) -> ResetClusterParameterGroupOutput
Consumes the builder and constructs a ResetClusterParameterGroupOutput
.
Trait Implementations§
source§impl Clone for ResetClusterParameterGroupOutputBuilder
impl Clone for ResetClusterParameterGroupOutputBuilder
source§fn clone(&self) -> ResetClusterParameterGroupOutputBuilder
fn clone(&self) -> ResetClusterParameterGroupOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ResetClusterParameterGroupOutputBuilder
impl Default for ResetClusterParameterGroupOutputBuilder
source§fn default() -> ResetClusterParameterGroupOutputBuilder
fn default() -> ResetClusterParameterGroupOutputBuilder
source§impl PartialEq for ResetClusterParameterGroupOutputBuilder
impl PartialEq for ResetClusterParameterGroupOutputBuilder
source§fn eq(&self, other: &ResetClusterParameterGroupOutputBuilder) -> bool
fn eq(&self, other: &ResetClusterParameterGroupOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ResetClusterParameterGroupOutputBuilder
Auto Trait Implementations§
impl Freeze for ResetClusterParameterGroupOutputBuilder
impl RefUnwindSafe for ResetClusterParameterGroupOutputBuilder
impl Send for ResetClusterParameterGroupOutputBuilder
impl Sync for ResetClusterParameterGroupOutputBuilder
impl Unpin for ResetClusterParameterGroupOutputBuilder
impl UnwindSafe for ResetClusterParameterGroupOutputBuilder
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