aws-sdk-route53resolver 1.111.0

AWS SDK for Amazon Route 53 Resolver
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub fn ser_delete_firewall_rule_input_input(
    object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
    input: &crate::operation::delete_firewall_rule::DeleteFirewallRuleInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
    if let Some(var_1) = &input.firewall_rule_group_id {
        object.key("FirewallRuleGroupId").string(var_1.as_str());
    }
    if let Some(var_2) = &input.firewall_domain_list_id {
        object.key("FirewallDomainListId").string(var_2.as_str());
    }
    if let Some(var_3) = &input.firewall_threat_protection_id {
        object.key("FirewallThreatProtectionId").string(var_3.as_str());
    }
    if let Some(var_4) = &input.qtype {
        object.key("Qtype").string(var_4.as_str());
    }
    Ok(())
}