pub fn ser_rollback_automation_event_input_input(
encoder: &mut ::aws_smithy_cbor::Encoder,
#[allow(unused)] input: &crate::operation::rollback_automation_event::RollbackAutomationEventInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
encoder.begin_map();
if let Some(var_1) = &input.event_id {
encoder.str("eventId").str(var_1.as_str());
}
if let Some(var_2) = &input.client_token {
encoder.str("clientToken").str(var_2.as_str());
}
encoder.end();
Ok(())
}