aws_sdk_route53resolver/client/disassociate_firewall_rule_group.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DisassociateFirewallRuleGroup`](crate::operation::disassociate_firewall_rule_group::builders::DisassociateFirewallRuleGroupFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`firewall_rule_group_association_id(impl Into<String>)`](crate::operation::disassociate_firewall_rule_group::builders::DisassociateFirewallRuleGroupFluentBuilder::firewall_rule_group_association_id) / [`set_firewall_rule_group_association_id(Option<String>)`](crate::operation::disassociate_firewall_rule_group::builders::DisassociateFirewallRuleGroupFluentBuilder::set_firewall_rule_group_association_id):<br>required: **true**<br><p>The identifier of the <code>FirewallRuleGroupAssociation</code>.</p><br>
7 /// - On success, responds with [`DisassociateFirewallRuleGroupOutput`](crate::operation::disassociate_firewall_rule_group::DisassociateFirewallRuleGroupOutput) with field(s):
8 /// - [`firewall_rule_group_association(Option<FirewallRuleGroupAssociation>)`](crate::operation::disassociate_firewall_rule_group::DisassociateFirewallRuleGroupOutput::firewall_rule_group_association): <p>The firewall rule group association that you just removed.</p>
9 /// - On failure, responds with [`SdkError<DisassociateFirewallRuleGroupError>`](crate::operation::disassociate_firewall_rule_group::DisassociateFirewallRuleGroupError)
10 pub fn disassociate_firewall_rule_group(
11 &self,
12 ) -> crate::operation::disassociate_firewall_rule_group::builders::DisassociateFirewallRuleGroupFluentBuilder {
13 crate::operation::disassociate_firewall_rule_group::builders::DisassociateFirewallRuleGroupFluentBuilder::new(self.handle.clone())
14 }
15}