aws_sdk_waf/client/
delete_xss_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 [`DeleteXssMatchSet`](crate::operation::delete_xss_match_set::builders::DeleteXssMatchSetFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`xss_match_set_id(impl Into<String>)`](crate::operation::delete_xss_match_set::builders::DeleteXssMatchSetFluentBuilder::xss_match_set_id) / [`set_xss_match_set_id(Option<String>)`](crate::operation::delete_xss_match_set::builders::DeleteXssMatchSetFluentBuilder::set_xss_match_set_id):<br>required: **true**<br><p>The <code>XssMatchSetId</code> of the <code>XssMatchSet</code> that you want to delete. <code>XssMatchSetId</code> is returned by <code>CreateXssMatchSet</code> and by <code>ListXssMatchSets</code>.</p><br>
    ///   - [`change_token(impl Into<String>)`](crate::operation::delete_xss_match_set::builders::DeleteXssMatchSetFluentBuilder::change_token) / [`set_change_token(Option<String>)`](crate::operation::delete_xss_match_set::builders::DeleteXssMatchSetFluentBuilder::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 [`DeleteXssMatchSetOutput`](crate::operation::delete_xss_match_set::DeleteXssMatchSetOutput) with field(s):
    ///   - [`change_token(Option<String>)`](crate::operation::delete_xss_match_set::DeleteXssMatchSetOutput::change_token): <p>The <code>ChangeToken</code> that you used to submit the <code>DeleteXssMatchSet</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<DeleteXssMatchSetError>`](crate::operation::delete_xss_match_set::DeleteXssMatchSetError)
    pub fn delete_xss_match_set(&self) -> crate::operation::delete_xss_match_set::builders::DeleteXssMatchSetFluentBuilder {
        crate::operation::delete_xss_match_set::builders::DeleteXssMatchSetFluentBuilder::new(self.handle.clone())
    }
}