#[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 get_name(&self) -> &Option<String>
pub fn get_name(&self) -> &Option<String>
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 get_with_decryption(&self) -> &Option<bool>
pub fn get_with_decryption(&self) -> &Option<bool>
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
.
source§impl GetParameterInputBuilder
impl GetParameterInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetParameterOutput, SdkError<GetParameterError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetParameterOutput, SdkError<GetParameterError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetParameterInputBuilder
impl Clone for GetParameterInputBuilder
source§fn clone(&self) -> GetParameterInputBuilder
fn clone(&self) -> GetParameterInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
source§impl PartialEq for GetParameterInputBuilder
impl PartialEq for GetParameterInputBuilder
source§fn eq(&self, other: &GetParameterInputBuilder) -> bool
fn eq(&self, other: &GetParameterInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.