Struct aws_sdk_ssm::input::GetParameterInput
source · [−]#[non_exhaustive]pub struct GetParameterInput {
pub name: Option<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.name: Option<String>
The name of the parameter you want to query.
To query by parameter label, use "Name": "name:label"
. To query by parameter version, use "Name": "name:version"
.
with_decryption: Option<bool>
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<GetParameter, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetParameter, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<GetParameter
>
Creates a new builder-style object to manufacture GetParameterInput
The name of the parameter you want to query.
To query by parameter label, use "Name": "name:label"
. To query by parameter version, use "Name": "name:version"
.
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 GetParameterInput
impl Send for GetParameterInput
impl Sync for GetParameterInput
impl Unpin for GetParameterInput
impl UnwindSafe for GetParameterInput
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