Struct aws_sdk_docdb::operation::delete_db_cluster_parameter_group::builders::DeleteDbClusterParameterGroupInputBuilder
source · #[non_exhaustive]pub struct DeleteDbClusterParameterGroupInputBuilder { /* private fields */ }
Expand description
A builder for DeleteDbClusterParameterGroupInput
.
Implementations§
source§impl DeleteDbClusterParameterGroupInputBuilder
impl DeleteDbClusterParameterGroupInputBuilder
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 the cluster parameter group.
Constraints:
-
Must be the name of an existing cluster parameter group.
-
You can't delete a default cluster parameter group.
-
Cannot be associated with any clusters.
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 the cluster parameter group.
Constraints:
-
Must be the name of an existing cluster parameter group.
-
You can't delete a default cluster parameter group.
-
Cannot be associated with any clusters.
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 the cluster parameter group.
Constraints:
-
Must be the name of an existing cluster parameter group.
-
You can't delete a default cluster parameter group.
-
Cannot be associated with any clusters.
sourcepub fn build(self) -> Result<DeleteDbClusterParameterGroupInput, BuildError>
pub fn build(self) -> Result<DeleteDbClusterParameterGroupInput, BuildError>
Consumes the builder and constructs a DeleteDbClusterParameterGroupInput
.
source§impl DeleteDbClusterParameterGroupInputBuilder
impl DeleteDbClusterParameterGroupInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DeleteDbClusterParameterGroupOutput, SdkError<DeleteDBClusterParameterGroupError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DeleteDbClusterParameterGroupOutput, SdkError<DeleteDBClusterParameterGroupError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteDbClusterParameterGroupInputBuilder
impl Clone for DeleteDbClusterParameterGroupInputBuilder
source§fn clone(&self) -> DeleteDbClusterParameterGroupInputBuilder
fn clone(&self) -> DeleteDbClusterParameterGroupInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DeleteDbClusterParameterGroupInputBuilder
impl Default for DeleteDbClusterParameterGroupInputBuilder
source§fn default() -> DeleteDbClusterParameterGroupInputBuilder
fn default() -> DeleteDbClusterParameterGroupInputBuilder
source§impl PartialEq for DeleteDbClusterParameterGroupInputBuilder
impl PartialEq for DeleteDbClusterParameterGroupInputBuilder
source§fn eq(&self, other: &DeleteDbClusterParameterGroupInputBuilder) -> bool
fn eq(&self, other: &DeleteDbClusterParameterGroupInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteDbClusterParameterGroupInputBuilder
Auto Trait Implementations§
impl Freeze for DeleteDbClusterParameterGroupInputBuilder
impl RefUnwindSafe for DeleteDbClusterParameterGroupInputBuilder
impl Send for DeleteDbClusterParameterGroupInputBuilder
impl Sync for DeleteDbClusterParameterGroupInputBuilder
impl Unpin for DeleteDbClusterParameterGroupInputBuilder
impl UnwindSafe for DeleteDbClusterParameterGroupInputBuilder
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