aws_sdk_networkfirewall/client/delete_proxy_rules.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 [`DeleteProxyRules`](crate::operation::delete_proxy_rules::builders::DeleteProxyRulesFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`proxy_rule_group_arn(impl Into<String>)`](crate::operation::delete_proxy_rules::builders::DeleteProxyRulesFluentBuilder::proxy_rule_group_arn) / [`set_proxy_rule_group_arn(Option<String>)`](crate::operation::delete_proxy_rules::builders::DeleteProxyRulesFluentBuilder::set_proxy_rule_group_arn):<br>required: **false**<br><p>The Amazon Resource Name (ARN) of a proxy rule group.</p> <p>You must specify the ARN or the name, and you can specify both.</p><br>
7 /// - [`proxy_rule_group_name(impl Into<String>)`](crate::operation::delete_proxy_rules::builders::DeleteProxyRulesFluentBuilder::proxy_rule_group_name) / [`set_proxy_rule_group_name(Option<String>)`](crate::operation::delete_proxy_rules::builders::DeleteProxyRulesFluentBuilder::set_proxy_rule_group_name):<br>required: **false**<br><p>The descriptive name of the proxy rule group. You can't change the name of a proxy rule group after you create it.</p> <p>You must specify the ARN or the name, and you can specify both.</p><br>
8 /// - [`rules(impl Into<String>)`](crate::operation::delete_proxy_rules::builders::DeleteProxyRulesFluentBuilder::rules) / [`set_rules(Option<Vec::<String>>)`](crate::operation::delete_proxy_rules::builders::DeleteProxyRulesFluentBuilder::set_rules):<br>required: **true**<br><p>The proxy rule(s) to remove from the existing proxy rule group.</p><br>
9 /// - On success, responds with [`DeleteProxyRulesOutput`](crate::operation::delete_proxy_rules::DeleteProxyRulesOutput) with field(s):
10 /// - [`proxy_rule_group(Option<ProxyRuleGroup>)`](crate::operation::delete_proxy_rules::DeleteProxyRulesOutput::proxy_rule_group): <p>The properties that define the proxy rule group with the newly created proxy rule(s).</p>
11 /// - On failure, responds with [`SdkError<DeleteProxyRulesError>`](crate::operation::delete_proxy_rules::DeleteProxyRulesError)
12 pub fn delete_proxy_rules(&self) -> crate::operation::delete_proxy_rules::builders::DeleteProxyRulesFluentBuilder {
13 crate::operation::delete_proxy_rules::builders::DeleteProxyRulesFluentBuilder::new(self.handle.clone())
14 }
15}