#[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.
You can't enter the Amazon Resource Name (ARN) for a parameter, only the parameter name itself.
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.
You can't enter the Amazon Resource Name (ARN) for a parameter, only the parameter name itself.
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.
You can't enter the Amazon Resource Name (ARN) for a parameter, only the parameter name itself.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
source§impl PartialEq for DeleteParametersInputBuilder
impl PartialEq for DeleteParametersInputBuilder
source§fn eq(&self, other: &DeleteParametersInputBuilder) -> bool
fn eq(&self, other: &DeleteParametersInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteParametersInputBuilder
Auto Trait Implementations§
impl Freeze for DeleteParametersInputBuilder
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
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