aws_sdk_waf/client/
delete_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 [`DeleteRule`](crate::operation::delete_rule::builders::DeleteRuleFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`rule_id(impl Into<String>)`](crate::operation::delete_rule::builders::DeleteRuleFluentBuilder::rule_id) / [`set_rule_id(Option<String>)`](crate::operation::delete_rule::builders::DeleteRuleFluentBuilder::set_rule_id):<br>required: **true**<br><p>The <code>RuleId</code> of the <code>Rule</code> that you want to delete. <code>RuleId</code> is returned by <code>CreateRule</code> and by <code>ListRules</code>.</p><br>
7    ///   - [`change_token(impl Into<String>)`](crate::operation::delete_rule::builders::DeleteRuleFluentBuilder::change_token) / [`set_change_token(Option<String>)`](crate::operation::delete_rule::builders::DeleteRuleFluentBuilder::set_change_token):<br>required: **true**<br><p>The value returned by the most recent call to <code>GetChangeToken</code>.</p><br>
8    /// - On success, responds with [`DeleteRuleOutput`](crate::operation::delete_rule::DeleteRuleOutput) with field(s):
9    ///   - [`change_token(Option<String>)`](crate::operation::delete_rule::DeleteRuleOutput::change_token): <p>The <code>ChangeToken</code> that you used to submit the <code>DeleteRule</code> request. You can also use this value to query the status of the request. For more information, see <code>GetChangeTokenStatus</code>.</p>
10    /// - On failure, responds with [`SdkError<DeleteRuleError>`](crate::operation::delete_rule::DeleteRuleError)
11    pub fn delete_rule(&self) -> crate::operation::delete_rule::builders::DeleteRuleFluentBuilder {
12        crate::operation::delete_rule::builders::DeleteRuleFluentBuilder::new(self.handle.clone())
13    }
14}