pub fn ser_describe_proxy_rule_input_input(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::operation::describe_proxy_rule::DescribeProxyRuleInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
if let Some(var_1) = &input.proxy_rule_name {
object.key("ProxyRuleName").string(var_1.as_str());
}
if let Some(var_2) = &input.proxy_rule_group_name {
object.key("ProxyRuleGroupName").string(var_2.as_str());
}
if let Some(var_3) = &input.proxy_rule_group_arn {
object.key("ProxyRuleGroupArn").string(var_3.as_str());
}
Ok(())
}