// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub fn ser_register_ecs_cluster_input_input(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::operation::register_ecs_cluster::RegisterEcsClusterInput,
) -> Result<(), ::aws_smithy_types::error::operation::SerializationError> {
if let Some(var_1) = &input.ecs_cluster_arn {
object.key("EcsClusterArn").string(var_1.as_str());
}
if let Some(var_2) = &input.stack_id {
object.key("StackId").string(var_2.as_str());
}
Ok(())
}