Struct aws_sdk_ssm::client::fluent_builders::GetParameter
source · [−]pub struct GetParameter { /* 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
sourceimpl GetParameter
impl GetParameter
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<GetParameter, AwsResponseRetryClassifier>, SdkError<GetParameterError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<GetParameter, AwsResponseRetryClassifier>, SdkError<GetParameterError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<GetParameterOutput, SdkError<GetParameterError>>
pub async fn send(
self
) -> Result<GetParameterOutput, SdkError<GetParameterError>>
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 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.
Trait Implementations
sourceimpl Clone for GetParameter
impl Clone for GetParameter
sourcefn clone(&self) -> GetParameter
fn clone(&self) -> GetParameter
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more