aws_sdk_wafregional/client/delete_sql_injection_match_set.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DeleteSqlInjectionMatchSet`](crate::operation::delete_sql_injection_match_set::builders::DeleteSqlInjectionMatchSetFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`sql_injection_match_set_id(impl Into<String>)`](crate::operation::delete_sql_injection_match_set::builders::DeleteSqlInjectionMatchSetFluentBuilder::sql_injection_match_set_id) / [`set_sql_injection_match_set_id(Option<String>)`](crate::operation::delete_sql_injection_match_set::builders::DeleteSqlInjectionMatchSetFluentBuilder::set_sql_injection_match_set_id):<br>required: **true**<br><p>The <code>SqlInjectionMatchSetId</code> of the <code>SqlInjectionMatchSet</code> that you want to delete. <code>SqlInjectionMatchSetId</code> is returned by <code>CreateSqlInjectionMatchSet</code> and by <code>ListSqlInjectionMatchSets</code>.</p><br>
/// - [`change_token(impl Into<String>)`](crate::operation::delete_sql_injection_match_set::builders::DeleteSqlInjectionMatchSetFluentBuilder::change_token) / [`set_change_token(Option<String>)`](crate::operation::delete_sql_injection_match_set::builders::DeleteSqlInjectionMatchSetFluentBuilder::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 [`DeleteSqlInjectionMatchSetOutput`](crate::operation::delete_sql_injection_match_set::DeleteSqlInjectionMatchSetOutput) with field(s):
/// - [`change_token(Option<String>)`](crate::operation::delete_sql_injection_match_set::DeleteSqlInjectionMatchSetOutput::change_token): <p>The <code>ChangeToken</code> that you used to submit the <code>DeleteSqlInjectionMatchSet</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<DeleteSqlInjectionMatchSetError>`](crate::operation::delete_sql_injection_match_set::DeleteSqlInjectionMatchSetError)
pub fn delete_sql_injection_match_set(
&self,
) -> crate::operation::delete_sql_injection_match_set::builders::DeleteSqlInjectionMatchSetFluentBuilder {
crate::operation::delete_sql_injection_match_set::builders::DeleteSqlInjectionMatchSetFluentBuilder::new(self.handle.clone())
}
}