pub fn ser_update_runtime_configuration_input_input(
encoder: &mut ::aws_smithy_cbor::Encoder,
#[allow(unused)] input: &crate::operation::update_runtime_configuration::UpdateRuntimeConfigurationInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
encoder.begin_map();
if let Some(var_1) = &input.fleet_id {
encoder.str("FleetId").str(var_1.as_str());
}
if let Some(var_2) = &input.runtime_configuration {
encoder.str("RuntimeConfiguration");
crate::protocol_serde::shape_runtime_configuration::ser_runtime_configuration(encoder, var_2)?;
}
encoder.end();
Ok(())
}