pub fn ser_create_usage_profile_input_input(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::operation::create_usage_profile::CreateUsageProfileInput,
) -> Result<(), ::aws_smithy_types::error::operation::SerializationError> {
if let Some(var_1) = &input.name {
object.key("Name").string(var_1.as_str());
}
if let Some(var_2) = &input.description {
object.key("Description").string(var_2.as_str());
}
if let Some(var_3) = &input.configuration {
#[allow(unused_mut)]
let mut object_4 = object.key("Configuration").start_object();
crate::protocol_serde::shape_profile_configuration::ser_profile_configuration(&mut object_4, var_3)?;
object_4.finish();
}
if let Some(var_5) = &input.tags {
#[allow(unused_mut)]
let mut object_6 = object.key("Tags").start_object();
for (key_7, value_8) in var_5 {
{
object_6.key(key_7.as_str()).string(value_8.as_str());
}
}
object_6.finish();
}
Ok(())
}