Struct aws_sdk_ssm::input::GetParametersInput
source · [−]#[non_exhaustive]pub struct GetParametersInput {
pub names: Option<Vec<String>>,
pub with_decryption: Option<bool>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.names: Option<Vec<String>>
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"
.
with_decryption: Option<bool>
Return decrypted secure string value. Return decrypted values for secure string parameters. This flag is ignored for String
and StringList
parameter types.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetParameters, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetParameters, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<GetParameters
>
Creates a new builder-style object to manufacture GetParametersInput
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"
.
Return decrypted secure string value. Return decrypted values for secure string parameters. This flag is ignored for String
and StringList
parameter types.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for GetParametersInput
impl Send for GetParametersInput
impl Sync for GetParametersInput
impl Unpin for GetParametersInput
impl UnwindSafe for GetParametersInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more