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