pub fn ser_start_deployment_input_input(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::operation::start_deployment::StartDeploymentInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
if let Some(var_1) = &input.job_id {
object.key("jobId").string(var_1.as_str());
}
if let Some(var_2) = &input.source_url {
object.key("sourceUrl").string(var_2.as_str());
}
if let Some(var_3) = &input.source_url_type {
object.key("sourceUrlType").string(var_3.as_str());
}
Ok(())
}