#[non_exhaustive]pub struct DeleteParametersOutputBuilder { /* private fields */ }
Expand description
A builder for DeleteParametersOutput
.
Implementations§
source§impl DeleteParametersOutputBuilder
impl DeleteParametersOutputBuilder
sourcepub fn deleted_parameters(self, input: impl Into<String>) -> Self
pub fn deleted_parameters(self, input: impl Into<String>) -> Self
Appends an item to deleted_parameters
.
To override the contents of this collection use set_deleted_parameters
.
The names of the deleted parameters.
sourcepub fn set_deleted_parameters(self, input: Option<Vec<String>>) -> Self
pub fn set_deleted_parameters(self, input: Option<Vec<String>>) -> Self
The names of the deleted parameters.
sourcepub fn invalid_parameters(self, input: impl Into<String>) -> Self
pub fn invalid_parameters(self, input: impl Into<String>) -> Self
Appends an item to invalid_parameters
.
To override the contents of this collection use set_invalid_parameters
.
The names of parameters that weren't deleted because the parameters aren't valid.
sourcepub fn set_invalid_parameters(self, input: Option<Vec<String>>) -> Self
pub fn set_invalid_parameters(self, input: Option<Vec<String>>) -> Self
The names of parameters that weren't deleted because the parameters aren't valid.
sourcepub fn build(self) -> DeleteParametersOutput
pub fn build(self) -> DeleteParametersOutput
Consumes the builder and constructs a DeleteParametersOutput
.
Trait Implementations§
source§impl Clone for DeleteParametersOutputBuilder
impl Clone for DeleteParametersOutputBuilder
source§fn clone(&self) -> DeleteParametersOutputBuilder
fn clone(&self) -> DeleteParametersOutputBuilder
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 DeleteParametersOutputBuilder
impl Default for DeleteParametersOutputBuilder
source§fn default() -> DeleteParametersOutputBuilder
fn default() -> DeleteParametersOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<DeleteParametersOutputBuilder> for DeleteParametersOutputBuilder
impl PartialEq<DeleteParametersOutputBuilder> for DeleteParametersOutputBuilder
source§fn eq(&self, other: &DeleteParametersOutputBuilder) -> bool
fn eq(&self, other: &DeleteParametersOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteParametersOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DeleteParametersOutputBuilder
impl Send for DeleteParametersOutputBuilder
impl Sync for DeleteParametersOutputBuilder
impl Unpin for DeleteParametersOutputBuilder
impl UnwindSafe for DeleteParametersOutputBuilder
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