pub fn ser_glue_properties_patch(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::types::GluePropertiesPatch,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
if let Some(var_1) = &input.glue_connection_input {
#[allow(unused_mut)]
let mut object_2 = object.key("glueConnectionInput").start_object();
crate::protocol_serde::shape_glue_connection_patch::ser_glue_connection_patch(&mut object_2, var_1)?;
object_2.finish();
}
Ok(())
}