aws_sdk_swf/protocol_serde/
shape_cancel_timer_decision_attributes.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2pub fn ser_cancel_timer_decision_attributes(
3    object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
4    input: &crate::types::CancelTimerDecisionAttributes,
5) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
6    {
7        object.key("timerId").string(input.timer_id.as_str());
8    }
9    Ok(())
10}