#[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"
.
The results for GetParameters
requests are listed in alphabetical order in query responses.
For 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"
.
The results for GetParameters
requests are listed in alphabetical order in query responses.
For 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"
.
The results for GetParameters
requests are listed in alphabetical order in query responses.
For 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 ==
.impl StructuralPartialEq for GetParametersInputBuilder
Auto Trait Implementations§
impl Freeze for GetParametersInputBuilder
impl RefUnwindSafe for GetParametersInputBuilder
impl Send for GetParametersInputBuilder
impl Sync for GetParametersInputBuilder
impl Unpin for GetParametersInputBuilder
impl UnwindSafe for GetParametersInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more