pub fn ser_update_file_cache_input_input(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::operation::update_file_cache::UpdateFileCacheInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
if let Some(var_1) = &input.file_cache_id {
object.key("FileCacheId").string(var_1.as_str());
}
if let Some(var_2) = &input.client_request_token {
object.key("ClientRequestToken").string(var_2.as_str());
}
if let Some(var_3) = &input.lustre_configuration {
#[allow(unused_mut)]
let mut object_4 = object.key("LustreConfiguration").start_object();
crate::protocol_serde::shape_update_file_cache_lustre_configuration::ser_update_file_cache_lustre_configuration(&mut object_4, var_3)?;
object_4.finish();
}
Ok(())
}