aws_sdk_ssm/protocol_serde/
shape_get_parameter_input.rs1pub fn ser_get_parameter_input_input(
3    object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
4    input: &crate::operation::get_parameter::GetParameterInput,
5) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
6    if let Some(var_1) = &input.name {
7        object.key("Name").string(var_1.as_str());
8    }
9    if let Some(var_2) = &input.with_decryption {
10        object.key("WithDecryption").boolean(*var_2);
11    }
12    Ok(())
13}