aws_sdk_route53resolver/client/get_firewall_rule_group_association.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 [`GetFirewallRuleGroupAssociation`](crate::operation::get_firewall_rule_group_association::builders::GetFirewallRuleGroupAssociationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`firewall_rule_group_association_id(impl Into<String>)`](crate::operation::get_firewall_rule_group_association::builders::GetFirewallRuleGroupAssociationFluentBuilder::firewall_rule_group_association_id) / [`set_firewall_rule_group_association_id(Option<String>)`](crate::operation::get_firewall_rule_group_association::builders::GetFirewallRuleGroupAssociationFluentBuilder::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 [`GetFirewallRuleGroupAssociationOutput`](crate::operation::get_firewall_rule_group_association::GetFirewallRuleGroupAssociationOutput) with field(s):
8 /// - [`firewall_rule_group_association(Option<FirewallRuleGroupAssociation>)`](crate::operation::get_firewall_rule_group_association::GetFirewallRuleGroupAssociationOutput::firewall_rule_group_association): <p>The association that you requested.</p>
9 /// - On failure, responds with [`SdkError<GetFirewallRuleGroupAssociationError>`](crate::operation::get_firewall_rule_group_association::GetFirewallRuleGroupAssociationError)
10 pub fn get_firewall_rule_group_association(
11 &self,
12 ) -> crate::operation::get_firewall_rule_group_association::builders::GetFirewallRuleGroupAssociationFluentBuilder {
13 crate::operation::get_firewall_rule_group_association::builders::GetFirewallRuleGroupAssociationFluentBuilder::new(self.handle.clone())
14 }
15}