pub fn ser_describe_fleet_events_input_input(
encoder: &mut ::aws_smithy_cbor::Encoder,
#[allow(unused)] input: &crate::operation::describe_fleet_events::DescribeFleetEventsInput,
) -> ::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.start_time {
encoder.str("StartTime").timestamp(var_2);
}
if let Some(var_3) = &input.end_time {
encoder.str("EndTime").timestamp(var_3);
}
if let Some(var_4) = &input.limit {
encoder.str("Limit").integer(*var_4);
}
if let Some(var_5) = &input.next_token {
encoder.str("NextToken").str(var_5.as_str());
}
encoder.end();
Ok(())
}