#[non_exhaustive]pub struct GetParametersInputBuilder { /* private fields */ }
Expand description
A builder for GetParametersInput
.
Implementations§
source§impl GetParametersInputBuilder
impl GetParametersInputBuilder
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.
sourcepub fn build(self) -> Result<GetParametersInput, BuildError>
pub fn build(self) -> Result<GetParametersInput, BuildError>
Consumes the builder and constructs a GetParametersInput
.
source§impl GetParametersInputBuilder
impl GetParametersInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetParametersOutput, SdkError<GetParametersError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetParametersOutput, SdkError<GetParametersError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetParametersInputBuilder
impl Clone for GetParametersInputBuilder
source§fn clone(&self) -> GetParametersInputBuilder
fn clone(&self) -> GetParametersInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetParametersInputBuilder
impl Debug for GetParametersInputBuilder
source§impl Default for GetParametersInputBuilder
impl Default for GetParametersInputBuilder
source§fn default() -> GetParametersInputBuilder
fn default() -> GetParametersInputBuilder
source§impl PartialEq for GetParametersInputBuilder
impl PartialEq for GetParametersInputBuilder
source§fn eq(&self, other: &GetParametersInputBuilder) -> bool
fn eq(&self, other: &GetParametersInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.