pub struct GetParameterFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to GetParameter
.
Get information about a single parameter by specifying the parameter name.
To get information about more than one parameter at a time, use the GetParameters
operation.
Implementations§
source§impl GetParameterFluentBuilder
impl GetParameterFluentBuilder
sourcepub fn as_input(&self) -> &GetParameterInputBuilder
pub fn as_input(&self) -> &GetParameterInputBuilder
Access the GetParameter as a reference.
sourcepub async fn send(
self
) -> Result<GetParameterOutput, SdkError<GetParameterError, HttpResponse>>
pub async fn send( self ) -> Result<GetParameterOutput, SdkError<GetParameterError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<GetParameterOutput, GetParameterError, Self>, SdkError<GetParameterError>>
pub async fn customize( self ) -> Result<CustomizableOperation<GetParameterOutput, GetParameterError, Self>, SdkError<GetParameterError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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.
Trait Implementations§
source§impl Clone for GetParameterFluentBuilder
impl Clone for GetParameterFluentBuilder
source§fn clone(&self) -> GetParameterFluentBuilder
fn clone(&self) -> GetParameterFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more