// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub fn ser_update_cluster_software_instance_group_specification(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::types::UpdateClusterSoftwareInstanceGroupSpecification,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
if let Some(var_1) = &input.instance_group_name {
object.key("InstanceGroupName").string(var_1.as_str());
}
Ok(())
}