aws_sdk_route53resolver/client/batch_update_firewall_rule.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 [`BatchUpdateFirewallRule`](crate::operation::batch_update_firewall_rule::builders::BatchUpdateFirewallRuleFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`update_firewall_rule_entries(UpdateFirewallRuleEntry)`](crate::operation::batch_update_firewall_rule::builders::BatchUpdateFirewallRuleFluentBuilder::update_firewall_rule_entries) / [`set_update_firewall_rule_entries(Option<Vec::<UpdateFirewallRuleEntry>>)`](crate::operation::batch_update_firewall_rule::builders::BatchUpdateFirewallRuleFluentBuilder::set_update_firewall_rule_entries):<br>required: **true**<br><p>The list of firewall rules to update.</p><br>
7 /// - On success, responds with [`BatchUpdateFirewallRuleOutput`](crate::operation::batch_update_firewall_rule::BatchUpdateFirewallRuleOutput) with field(s):
8 /// - [`updated_firewall_rules(Option<Vec::<FirewallRule>>)`](crate::operation::batch_update_firewall_rule::BatchUpdateFirewallRuleOutput::updated_firewall_rules): <p>The firewall rules that were successfully updated by the request.</p>
9 /// - [`update_errors(Option<Vec::<BatchUpdateFirewallRuleError>>)`](crate::operation::batch_update_firewall_rule::BatchUpdateFirewallRuleOutput::update_errors): <p>A list of errors that occurred while updating the firewall rules.</p>
10 /// - On failure, responds with [`SdkError<BatchUpdateFirewallRuleError>`](crate::operation::batch_update_firewall_rule::BatchUpdateFirewallRuleError)
11 pub fn batch_update_firewall_rule(&self) -> crate::operation::batch_update_firewall_rule::builders::BatchUpdateFirewallRuleFluentBuilder {
12 crate::operation::batch_update_firewall_rule::builders::BatchUpdateFirewallRuleFluentBuilder::new(self.handle.clone())
13 }
14}