Struct aws_sdk_ssm::client::fluent_builders::GetParameters
source · [−]pub struct GetParameters { /* private fields */ }
Expand description
Fluent builder constructing a request to GetParameters
.
Get information about one or more parameters by specifying multiple parameter names.
To get information about a single parameter, you can use the GetParameter
operation instead.
Implementations
sourceimpl GetParameters
impl GetParameters
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<GetParameters, AwsResponseRetryClassifier>, SdkError<GetParametersError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<GetParameters, AwsResponseRetryClassifier>, SdkError<GetParametersError>>
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<GetParametersOutput, SdkError<GetParametersError>>
pub async fn send(
self
) -> Result<GetParametersOutput, SdkError<GetParametersError>>
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 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.
Trait Implementations
sourceimpl Clone for GetParameters
impl Clone for GetParameters
sourcefn clone(&self) -> GetParameters
fn clone(&self) -> GetParameters
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more