aws_sdk_waf/client/
delete_regex_match_set.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteRegexMatchSet`](crate::operation::delete_regex_match_set::builders::DeleteRegexMatchSetFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`regex_match_set_id(impl Into<String>)`](crate::operation::delete_regex_match_set::builders::DeleteRegexMatchSetFluentBuilder::regex_match_set_id) / [`set_regex_match_set_id(Option<String>)`](crate::operation::delete_regex_match_set::builders::DeleteRegexMatchSetFluentBuilder::set_regex_match_set_id):<br>required: **true**<br><p>The <code>RegexMatchSetId</code> of the <code>RegexMatchSet</code> that you want to delete. <code>RegexMatchSetId</code> is returned by <code>CreateRegexMatchSet</code> and by <code>ListRegexMatchSets</code>.</p><br>
    ///   - [`change_token(impl Into<String>)`](crate::operation::delete_regex_match_set::builders::DeleteRegexMatchSetFluentBuilder::change_token) / [`set_change_token(Option<String>)`](crate::operation::delete_regex_match_set::builders::DeleteRegexMatchSetFluentBuilder::set_change_token):<br>required: **true**<br><p>The value returned by the most recent call to <code>GetChangeToken</code>.</p><br>
    /// - On success, responds with [`DeleteRegexMatchSetOutput`](crate::operation::delete_regex_match_set::DeleteRegexMatchSetOutput) with field(s):
    ///   - [`change_token(Option<String>)`](crate::operation::delete_regex_match_set::DeleteRegexMatchSetOutput::change_token): <p>The <code>ChangeToken</code> that you used to submit the <code>DeleteRegexMatchSet</code> request. You can also use this value to query the status of the request. For more information, see <code>GetChangeTokenStatus</code>.</p>
    /// - On failure, responds with [`SdkError<DeleteRegexMatchSetError>`](crate::operation::delete_regex_match_set::DeleteRegexMatchSetError)
    pub fn delete_regex_match_set(&self) -> crate::operation::delete_regex_match_set::builders::DeleteRegexMatchSetFluentBuilder {
        crate::operation::delete_regex_match_set::builders::DeleteRegexMatchSetFluentBuilder::new(self.handle.clone())
    }
}