Struct aws_sdk_docdb::operation::delete_db_subnet_group::builders::DeleteDbSubnetGroupInputBuilder
source · #[non_exhaustive]pub struct DeleteDbSubnetGroupInputBuilder { /* private fields */ }Expand description
A builder for DeleteDbSubnetGroupInput.
Implementations§
source§impl DeleteDbSubnetGroupInputBuilder
impl DeleteDbSubnetGroupInputBuilder
sourcepub fn db_subnet_group_name(self, input: impl Into<String>) -> Self
pub fn db_subnet_group_name(self, input: impl Into<String>) -> Self
The name of the database subnet group to delete.
You can't delete the default subnet group.
Constraints:
Must match the name of an existing DBSubnetGroup. Must not be default.
Example: mySubnetgroup
sourcepub fn set_db_subnet_group_name(self, input: Option<String>) -> Self
pub fn set_db_subnet_group_name(self, input: Option<String>) -> Self
The name of the database subnet group to delete.
You can't delete the default subnet group.
Constraints:
Must match the name of an existing DBSubnetGroup. Must not be default.
Example: mySubnetgroup
sourcepub fn get_db_subnet_group_name(&self) -> &Option<String>
pub fn get_db_subnet_group_name(&self) -> &Option<String>
The name of the database subnet group to delete.
You can't delete the default subnet group.
Constraints:
Must match the name of an existing DBSubnetGroup. Must not be default.
Example: mySubnetgroup
sourcepub fn build(self) -> Result<DeleteDbSubnetGroupInput, BuildError>
pub fn build(self) -> Result<DeleteDbSubnetGroupInput, BuildError>
Consumes the builder and constructs a DeleteDbSubnetGroupInput.
source§impl DeleteDbSubnetGroupInputBuilder
impl DeleteDbSubnetGroupInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<DeleteDbSubnetGroupOutput, SdkError<DeleteDBSubnetGroupError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<DeleteDbSubnetGroupOutput, SdkError<DeleteDBSubnetGroupError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteDbSubnetGroupInputBuilder
impl Clone for DeleteDbSubnetGroupInputBuilder
source§fn clone(&self) -> DeleteDbSubnetGroupInputBuilder
fn clone(&self) -> DeleteDbSubnetGroupInputBuilder
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 Default for DeleteDbSubnetGroupInputBuilder
impl Default for DeleteDbSubnetGroupInputBuilder
source§fn default() -> DeleteDbSubnetGroupInputBuilder
fn default() -> DeleteDbSubnetGroupInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DeleteDbSubnetGroupInputBuilder
impl PartialEq for DeleteDbSubnetGroupInputBuilder
source§fn eq(&self, other: &DeleteDbSubnetGroupInputBuilder) -> bool
fn eq(&self, other: &DeleteDbSubnetGroupInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteDbSubnetGroupInputBuilder
Auto Trait Implementations§
impl Freeze for DeleteDbSubnetGroupInputBuilder
impl RefUnwindSafe for DeleteDbSubnetGroupInputBuilder
impl Send for DeleteDbSubnetGroupInputBuilder
impl Sync for DeleteDbSubnetGroupInputBuilder
impl Unpin for DeleteDbSubnetGroupInputBuilder
impl UnwindSafe for DeleteDbSubnetGroupInputBuilder
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
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.