aws_sdk_networkfirewall/client/delete_proxy_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 [`DeleteProxyRuleGroup`](crate::operation::delete_proxy_rule_group::builders::DeleteProxyRuleGroupFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`proxy_rule_group_name(impl Into<String>)`](crate::operation::delete_proxy_rule_group::builders::DeleteProxyRuleGroupFluentBuilder::proxy_rule_group_name) / [`set_proxy_rule_group_name(Option<String>)`](crate::operation::delete_proxy_rule_group::builders::DeleteProxyRuleGroupFluentBuilder::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>
7 /// - [`proxy_rule_group_arn(impl Into<String>)`](crate::operation::delete_proxy_rule_group::builders::DeleteProxyRuleGroupFluentBuilder::proxy_rule_group_arn) / [`set_proxy_rule_group_arn(Option<String>)`](crate::operation::delete_proxy_rule_group::builders::DeleteProxyRuleGroupFluentBuilder::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>
8 /// - On success, responds with [`DeleteProxyRuleGroupOutput`](crate::operation::delete_proxy_rule_group::DeleteProxyRuleGroupOutput) with field(s):
9 /// - [`proxy_rule_group_name(Option<String>)`](crate::operation::delete_proxy_rule_group::DeleteProxyRuleGroupOutput::proxy_rule_group_name): <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>
10 /// - [`proxy_rule_group_arn(Option<String>)`](crate::operation::delete_proxy_rule_group::DeleteProxyRuleGroupOutput::proxy_rule_group_arn): <p>The Amazon Resource Name (ARN) of a proxy rule group.</p>
11 /// - On failure, responds with [`SdkError<DeleteProxyRuleGroupError>`](crate::operation::delete_proxy_rule_group::DeleteProxyRuleGroupError)
12 pub fn delete_proxy_rule_group(&self) -> crate::operation::delete_proxy_rule_group::builders::DeleteProxyRuleGroupFluentBuilder {
13 crate::operation::delete_proxy_rule_group::builders::DeleteProxyRuleGroupFluentBuilder::new(self.handle.clone())
14 }
15}