aws_sdk_codepipeline/protocol_serde/shape_acknowledge_job_input.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub fn ser_acknowledge_job_input_input(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::operation::acknowledge_job::AcknowledgeJobInput,
) -> 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.nonce {
object.key("nonce").string(var_2.as_str());
}
Ok(())
}