pub fn ser_create_event_log_configuration_input_input(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::operation::create_event_log_configuration::CreateEventLogConfigurationInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
if let Some(var_1) = &input.client_token {
object.key("ClientToken").string(var_1.as_str());
}
if let Some(var_2) = &input.event_log_level {
object.key("EventLogLevel").string(var_2.as_str());
}
if let Some(var_3) = &input.resource_id {
object.key("ResourceId").string(var_3.as_str());
}
if let Some(var_4) = &input.resource_type {
object.key("ResourceType").string(var_4.as_str());
}
Ok(())
}