aws_sdk_wafv2/client/delete_firewall_manager_rule_groups.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DeleteFirewallManagerRuleGroups`](crate::operation::delete_firewall_manager_rule_groups::builders::DeleteFirewallManagerRuleGroupsFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`web_acl_arn(impl Into<String>)`](crate::operation::delete_firewall_manager_rule_groups::builders::DeleteFirewallManagerRuleGroupsFluentBuilder::web_acl_arn) / [`set_web_acl_arn(Option<String>)`](crate::operation::delete_firewall_manager_rule_groups::builders::DeleteFirewallManagerRuleGroupsFluentBuilder::set_web_acl_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the web ACL.</p><br>
/// - [`web_acl_lock_token(impl Into<String>)`](crate::operation::delete_firewall_manager_rule_groups::builders::DeleteFirewallManagerRuleGroupsFluentBuilder::web_acl_lock_token) / [`set_web_acl_lock_token(Option<String>)`](crate::operation::delete_firewall_manager_rule_groups::builders::DeleteFirewallManagerRuleGroupsFluentBuilder::set_web_acl_lock_token):<br>required: **true**<br><p>A token used for optimistic locking. WAF returns a token to your <code>get</code> and <code>list</code> requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like <code>update</code> and <code>delete</code>. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a <code>WAFOptimisticLockException</code>. If this happens, perform another <code>get</code>, and use the new token returned by that operation.</p><br>
/// - On success, responds with [`DeleteFirewallManagerRuleGroupsOutput`](crate::operation::delete_firewall_manager_rule_groups::DeleteFirewallManagerRuleGroupsOutput) with field(s):
/// - [`next_web_acl_lock_token(Option<String>)`](crate::operation::delete_firewall_manager_rule_groups::DeleteFirewallManagerRuleGroupsOutput::next_web_acl_lock_token): <p>A token used for optimistic locking. WAF returns a token to your <code>get</code> and <code>list</code> requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like <code>update</code> and <code>delete</code>. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a <code>WAFOptimisticLockException</code>. If this happens, perform another <code>get</code>, and use the new token returned by that operation.</p>
/// - On failure, responds with [`SdkError<DeleteFirewallManagerRuleGroupsError>`](crate::operation::delete_firewall_manager_rule_groups::DeleteFirewallManagerRuleGroupsError)
pub fn delete_firewall_manager_rule_groups(
&self,
) -> crate::operation::delete_firewall_manager_rule_groups::builders::DeleteFirewallManagerRuleGroupsFluentBuilder {
crate::operation::delete_firewall_manager_rule_groups::builders::DeleteFirewallManagerRuleGroupsFluentBuilder::new(self.handle.clone())
}
}