#[non_exhaustive]pub struct GetParameterInputBuilder { /* private fields */ }Expand description
A builder for GetParameterInput.
Implementations§
source§impl GetParameterInputBuilder
impl GetParameterInputBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the parameter you want to query.
To query by parameter label, use "Name": "name:label". To query by parameter version, use "Name": "name:version".
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name of the parameter you want to query.
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 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 values for secure string parameters. This flag is ignored for String and StringList parameter types.
sourcepub fn build(self) -> Result<GetParameterInput, BuildError>
pub fn build(self) -> Result<GetParameterInput, BuildError>
Consumes the builder and constructs a GetParameterInput.
Trait Implementations§
source§impl Clone for GetParameterInputBuilder
impl Clone for GetParameterInputBuilder
source§fn clone(&self) -> GetParameterInputBuilder
fn clone(&self) -> GetParameterInputBuilder
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 GetParameterInputBuilder
impl Debug for GetParameterInputBuilder
source§impl Default for GetParameterInputBuilder
impl Default for GetParameterInputBuilder
source§fn default() -> GetParameterInputBuilder
fn default() -> GetParameterInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<GetParameterInputBuilder> for GetParameterInputBuilder
impl PartialEq<GetParameterInputBuilder> for GetParameterInputBuilder
source§fn eq(&self, other: &GetParameterInputBuilder) -> bool
fn eq(&self, other: &GetParameterInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.