#[non_exhaustive]pub struct GetParametersInputBuilder { /* private fields */ }
Expand description
A builder for GetParametersInput
.
Implementations§
source§impl GetParametersInputBuilder
impl GetParametersInputBuilder
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
.
Names of the parameters for which you want to query information.
To query by parameter label, use "Name": "name:label"
. To query by parameter version, use "Name": "name:version"
.
sourcepub fn set_names(self, input: Option<Vec<String>>) -> Self
pub fn set_names(self, input: Option<Vec<String>>) -> Self
Names of the parameters for which you want to query information.
To query by parameter label, use "Name": "name:label"
. To query by parameter version, use "Name": "name:version"
.
sourcepub fn with_decryption(self, input: bool) -> Self
pub fn with_decryption(self, input: bool) -> Self
Return decrypted secure string value. Return decrypted values for secure string parameters. This flag is ignored for String
and StringList
parameter types.
sourcepub fn set_with_decryption(self, input: Option<bool>) -> Self
pub fn set_with_decryption(self, input: Option<bool>) -> Self
Return decrypted secure string value. Return decrypted values for secure string parameters. This flag is ignored for String
and StringList
parameter types.
sourcepub fn build(self) -> Result<GetParametersInput, BuildError>
pub fn build(self) -> Result<GetParametersInput, BuildError>
Consumes the builder and constructs a GetParametersInput
.
Trait Implementations§
source§impl Clone for GetParametersInputBuilder
impl Clone for GetParametersInputBuilder
source§fn clone(&self) -> GetParametersInputBuilder
fn clone(&self) -> GetParametersInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetParametersInputBuilder
impl Debug for GetParametersInputBuilder
source§impl Default for GetParametersInputBuilder
impl Default for GetParametersInputBuilder
source§fn default() -> GetParametersInputBuilder
fn default() -> GetParametersInputBuilder
source§impl PartialEq<GetParametersInputBuilder> for GetParametersInputBuilder
impl PartialEq<GetParametersInputBuilder> for GetParametersInputBuilder
source§fn eq(&self, other: &GetParametersInputBuilder) -> bool
fn eq(&self, other: &GetParametersInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.