pub fn ser_update_event_configurations_input_input(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::operation::update_event_configurations::UpdateEventConfigurationsInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
if let Some(var_1) = &input.event_configurations {
#[allow(unused_mut)]
let mut object_2 = object.key("eventConfigurations").start_object();
for (key_3, value_4) in var_1 {
{
#[allow(unused_mut)]
let mut object_5 = object_2.key(key_3.as_str()).start_object();
crate::protocol_serde::shape_configuration::ser_configuration(&mut object_5, value_4)?;
object_5.finish();
}
}
object_2.finish();
}
Ok(())
}