Struct aws_sdk_docdb::operation::modify_db_cluster_parameter_group::builders::ModifyDbClusterParameterGroupOutputBuilder
source · #[non_exhaustive]pub struct ModifyDbClusterParameterGroupOutputBuilder { /* private fields */ }
Expand description
A builder for ModifyDbClusterParameterGroupOutput
.
Implementations§
source§impl ModifyDbClusterParameterGroupOutputBuilder
impl ModifyDbClusterParameterGroupOutputBuilder
sourcepub fn db_cluster_parameter_group_name(self, input: impl Into<String>) -> Self
pub fn db_cluster_parameter_group_name(self, input: impl Into<String>) -> Self
The name of a cluster parameter group.
Constraints:
-
Must be from 1 to 255 letters or numbers.
-
The first character must be a letter.
-
Cannot end with a hyphen or contain two consecutive hyphens.
This value is stored as a lowercase string.
sourcepub fn set_db_cluster_parameter_group_name(self, input: Option<String>) -> Self
pub fn set_db_cluster_parameter_group_name(self, input: Option<String>) -> Self
The name of a cluster parameter group.
Constraints:
-
Must be from 1 to 255 letters or numbers.
-
The first character must be a letter.
-
Cannot end with a hyphen or contain two consecutive hyphens.
This value is stored as a lowercase string.
sourcepub fn get_db_cluster_parameter_group_name(&self) -> &Option<String>
pub fn get_db_cluster_parameter_group_name(&self) -> &Option<String>
The name of a cluster parameter group.
Constraints:
-
Must be from 1 to 255 letters or numbers.
-
The first character must be a letter.
-
Cannot end with a hyphen or contain two consecutive hyphens.
This value is stored as a lowercase string.
sourcepub fn build(self) -> ModifyDbClusterParameterGroupOutput
pub fn build(self) -> ModifyDbClusterParameterGroupOutput
Consumes the builder and constructs a ModifyDbClusterParameterGroupOutput
.
Trait Implementations§
source§impl Clone for ModifyDbClusterParameterGroupOutputBuilder
impl Clone for ModifyDbClusterParameterGroupOutputBuilder
source§fn clone(&self) -> ModifyDbClusterParameterGroupOutputBuilder
fn clone(&self) -> ModifyDbClusterParameterGroupOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ModifyDbClusterParameterGroupOutputBuilder
impl Default for ModifyDbClusterParameterGroupOutputBuilder
source§fn default() -> ModifyDbClusterParameterGroupOutputBuilder
fn default() -> ModifyDbClusterParameterGroupOutputBuilder
source§impl PartialEq for ModifyDbClusterParameterGroupOutputBuilder
impl PartialEq for ModifyDbClusterParameterGroupOutputBuilder
source§fn eq(&self, other: &ModifyDbClusterParameterGroupOutputBuilder) -> bool
fn eq(&self, other: &ModifyDbClusterParameterGroupOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ModifyDbClusterParameterGroupOutputBuilder
Auto Trait Implementations§
impl Freeze for ModifyDbClusterParameterGroupOutputBuilder
impl RefUnwindSafe for ModifyDbClusterParameterGroupOutputBuilder
impl Send for ModifyDbClusterParameterGroupOutputBuilder
impl Sync for ModifyDbClusterParameterGroupOutputBuilder
impl Unpin for ModifyDbClusterParameterGroupOutputBuilder
impl UnwindSafe for ModifyDbClusterParameterGroupOutputBuilder
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> 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