pub fn ser_describe_flywheel_iteration_input_input(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::operation::describe_flywheel_iteration::DescribeFlywheelIterationInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
if let Some(var_1) = &input.flywheel_arn {
object.key("FlywheelArn").string(var_1.as_str());
}
if let Some(var_2) = &input.flywheel_iteration_id {
object.key("FlywheelIterationId").string(var_2.as_str());
}
Ok(())
}