// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub fn ser_get_db_server_input_input(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::operation::get_db_server::GetDbServerInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
if let Some(var_1) = &input.cloud_exadata_infrastructure_id {
object.key("cloudExadataInfrastructureId").string(var_1.as_str());
}
if let Some(var_2) = &input.db_server_id {
object.key("dbServerId").string(var_2.as_str());
}
Ok(())
}