pub fn ser_set_subscription_attributes_input_input_input(
input: &crate::operation::set_subscription_attributes::SetSubscriptionAttributesInput,
) -> ::std::result::Result<::aws_smithy_types::body::SdkBody, ::aws_smithy_types::error::operation::SerializationError> {
let mut out = String::new();
#[allow(unused_mut)]
let mut writer = ::aws_smithy_query::QueryWriter::new(&mut out, "SetSubscriptionAttributes", "2010-03-31");
#[allow(unused_mut)]
let mut scope_1 = writer.prefix("SubscriptionArn");
if let Some(var_2) = &input.subscription_arn {
scope_1.string(var_2);
}
#[allow(unused_mut)]
let mut scope_3 = writer.prefix("AttributeName");
if let Some(var_4) = &input.attribute_name {
scope_3.string(var_4);
}
#[allow(unused_mut)]
let mut scope_5 = writer.prefix("AttributeValue");
if let Some(var_6) = &input.attribute_value {
scope_5.string(var_6);
}
writer.finish();
Ok(::aws_smithy_types::body::SdkBody::from(out))
}