pub struct GetParametersFluentBuilder { /* 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§
source§impl GetParametersFluentBuilder
impl GetParametersFluentBuilder
sourcepub fn as_input(&self) -> &GetParametersInputBuilder
pub fn as_input(&self) -> &GetParametersInputBuilder
Access the GetParameters as a reference.
sourcepub async fn send(
self
) -> Result<GetParametersOutput, SdkError<GetParametersError, HttpResponse>>
pub async fn send( self ) -> Result<GetParametersOutput, SdkError<GetParametersError, 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 fn customize(
self
) -> CustomizableOperation<GetParametersOutput, GetParametersError, Self>
pub fn customize( self ) -> CustomizableOperation<GetParametersOutput, GetParametersError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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
.
The names or Amazon Resource Names (ARNs) of the parameters that you want to query. For parameters shared with you from another account, you must use the full ARNs.
To query by parameter label, use "Name": "name:label"
. To query by parameter version, use "Name": "name:version"
.
For more information about shared parameters, see Working with shared parameters in the Amazon Web Services Systems Manager User Guide.
sourcepub fn set_names(self, input: Option<Vec<String>>) -> Self
pub fn set_names(self, input: Option<Vec<String>>) -> Self
The names or Amazon Resource Names (ARNs) of the parameters that you want to query. For parameters shared with you from another account, you must use the full ARNs.
To query by parameter label, use "Name": "name:label"
. To query by parameter version, use "Name": "name:version"
.
For more information about shared parameters, see Working with shared parameters in the Amazon Web Services Systems Manager User Guide.
sourcepub fn get_names(&self) -> &Option<Vec<String>>
pub fn get_names(&self) -> &Option<Vec<String>>
The names or Amazon Resource Names (ARNs) of the parameters that you want to query. For parameters shared with you from another account, you must use the full ARNs.
To query by parameter label, use "Name": "name:label"
. To query by parameter version, use "Name": "name:version"
.
For more information about shared parameters, see Working with shared parameters in the Amazon Web Services Systems Manager User Guide.
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.
sourcepub fn get_with_decryption(&self) -> &Option<bool>
pub fn get_with_decryption(&self) -> &Option<bool>
Return decrypted secure string value. Return decrypted values for secure string parameters. This flag is ignored for String
and StringList
parameter types.
Trait Implementations§
source§impl Clone for GetParametersFluentBuilder
impl Clone for GetParametersFluentBuilder
source§fn clone(&self) -> GetParametersFluentBuilder
fn clone(&self) -> GetParametersFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more