pub fn ser_stop_fleet_actions_input_input(
encoder: &mut ::aws_smithy_cbor::Encoder,
#[allow(unused)] input: &crate::operation::stop_fleet_actions::StopFleetActionsInput,
) -> ::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.actions {
encoder.str("Actions");
encoder.array((*var_2).len());
for item_3 in var_2 {
{
encoder.str(item_3.as_str());
}
}
}
if let Some(var_4) = &input.location {
encoder.str("Location").str(var_4.as_str());
}
encoder.end();
Ok(())
}