#[non_exhaustive]pub struct DeleteParametersInputBuilder { /* private fields */ }
Expand description
A builder for DeleteParametersInput
.
Implementations§
source§impl DeleteParametersInputBuilder
impl DeleteParametersInputBuilder
sourcepub fn names(self, input: impl Into<String>) -> Self
pub fn names(self, input: impl Into<String>) -> Self
Appends an item to names
.
To override the contents of this collection use set_names
.
The names of the parameters to delete. After deleting a parameter, wait for at least 30 seconds to create a parameter with the same name.
sourcepub fn set_names(self, input: Option<Vec<String>>) -> Self
pub fn set_names(self, input: Option<Vec<String>>) -> Self
The names of the parameters to delete. After deleting a parameter, wait for at least 30 seconds to create a parameter with the same name.
sourcepub fn get_names(&self) -> &Option<Vec<String>>
pub fn get_names(&self) -> &Option<Vec<String>>
The names of the parameters to delete. After deleting a parameter, wait for at least 30 seconds to create a parameter with the same name.
sourcepub fn build(self) -> Result<DeleteParametersInput, BuildError>
pub fn build(self) -> Result<DeleteParametersInput, BuildError>
Consumes the builder and constructs a DeleteParametersInput
.
source§impl DeleteParametersInputBuilder
impl DeleteParametersInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DeleteParametersOutput, SdkError<DeleteParametersError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DeleteParametersOutput, SdkError<DeleteParametersError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteParametersInputBuilder
impl Clone for DeleteParametersInputBuilder
source§fn clone(&self) -> DeleteParametersInputBuilder
fn clone(&self) -> DeleteParametersInputBuilder
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 Debug for DeleteParametersInputBuilder
impl Debug for DeleteParametersInputBuilder
source§impl Default for DeleteParametersInputBuilder
impl Default for DeleteParametersInputBuilder
source§fn default() -> DeleteParametersInputBuilder
fn default() -> DeleteParametersInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DeleteParametersInputBuilder
impl PartialEq for DeleteParametersInputBuilder
source§fn eq(&self, other: &DeleteParametersInputBuilder) -> bool
fn eq(&self, other: &DeleteParametersInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteParametersInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DeleteParametersInputBuilder
impl Send for DeleteParametersInputBuilder
impl Sync for DeleteParametersInputBuilder
impl Unpin for DeleteParametersInputBuilder
impl UnwindSafe for DeleteParametersInputBuilder
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