#[non_exhaustive]pub struct GetParametersOutputBuilder { /* private fields */ }
Expand description
A builder for GetParametersOutput
.
Implementations§
source§impl GetParametersOutputBuilder
impl GetParametersOutputBuilder
sourcepub fn parameters(self, input: Parameter) -> Self
pub fn parameters(self, input: Parameter) -> Self
Appends an item to parameters
.
To override the contents of this collection use set_parameters
.
A list of details for a parameter.
sourcepub fn set_parameters(self, input: Option<Vec<Parameter>>) -> Self
pub fn set_parameters(self, input: Option<Vec<Parameter>>) -> Self
A list of details for a parameter.
sourcepub fn get_parameters(&self) -> &Option<Vec<Parameter>>
pub fn get_parameters(&self) -> &Option<Vec<Parameter>>
A list of details for a parameter.
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
.
A list of parameters that aren't formatted correctly or don't run during an execution.
sourcepub fn set_invalid_parameters(self, input: Option<Vec<String>>) -> Self
pub fn set_invalid_parameters(self, input: Option<Vec<String>>) -> Self
A list of parameters that aren't formatted correctly or don't run during an execution.
sourcepub fn get_invalid_parameters(&self) -> &Option<Vec<String>>
pub fn get_invalid_parameters(&self) -> &Option<Vec<String>>
A list of parameters that aren't formatted correctly or don't run during an execution.
sourcepub fn build(self) -> GetParametersOutput
pub fn build(self) -> GetParametersOutput
Consumes the builder and constructs a GetParametersOutput
.
Trait Implementations§
source§impl Clone for GetParametersOutputBuilder
impl Clone for GetParametersOutputBuilder
source§fn clone(&self) -> GetParametersOutputBuilder
fn clone(&self) -> GetParametersOutputBuilder
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 GetParametersOutputBuilder
impl Debug for GetParametersOutputBuilder
source§impl Default for GetParametersOutputBuilder
impl Default for GetParametersOutputBuilder
source§fn default() -> GetParametersOutputBuilder
fn default() -> GetParametersOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetParametersOutputBuilder
impl PartialEq for GetParametersOutputBuilder
source§fn eq(&self, other: &GetParametersOutputBuilder) -> bool
fn eq(&self, other: &GetParametersOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetParametersOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for GetParametersOutputBuilder
impl Send for GetParametersOutputBuilder
impl Sync for GetParametersOutputBuilder
impl Unpin for GetParametersOutputBuilder
impl UnwindSafe for GetParametersOutputBuilder
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