pub fn ser_put_runtime_management_config_input_input(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::operation::put_runtime_management_config::PutRuntimeManagementConfigInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
if let Some(var_1) = &input.runtime_version_arn {
object.key("RuntimeVersionArn").string(var_1.as_str());
}
if let Some(var_2) = &input.update_runtime_on {
object.key("UpdateRuntimeOn").string(var_2.as_str());
}
Ok(())
}