aws_sdk_waf/client/create_sql_injection_match_set.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 [`CreateSqlInjectionMatchSet`](crate::operation::create_sql_injection_match_set::builders::CreateSqlInjectionMatchSetFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`name(impl Into<String>)`](crate::operation::create_sql_injection_match_set::builders::CreateSqlInjectionMatchSetFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::create_sql_injection_match_set::builders::CreateSqlInjectionMatchSetFluentBuilder::set_name):<br>required: **true**<br><p>A friendly name or description for the <code>SqlInjectionMatchSet</code> that you're creating. You can't change <code>Name</code> after you create the <code>SqlInjectionMatchSet</code>.</p><br>
7 /// - [`change_token(impl Into<String>)`](crate::operation::create_sql_injection_match_set::builders::CreateSqlInjectionMatchSetFluentBuilder::change_token) / [`set_change_token(Option<String>)`](crate::operation::create_sql_injection_match_set::builders::CreateSqlInjectionMatchSetFluentBuilder::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 [`CreateSqlInjectionMatchSetOutput`](crate::operation::create_sql_injection_match_set::CreateSqlInjectionMatchSetOutput) with field(s):
9 /// - [`sql_injection_match_set(Option<SqlInjectionMatchSet>)`](crate::operation::create_sql_injection_match_set::CreateSqlInjectionMatchSetOutput::sql_injection_match_set): <p>A <code>SqlInjectionMatchSet</code>.</p>
10 /// - [`change_token(Option<String>)`](crate::operation::create_sql_injection_match_set::CreateSqlInjectionMatchSetOutput::change_token): <p>The <code>ChangeToken</code> that you used to submit the <code>CreateSqlInjectionMatchSet</code> request. You can also use this value to query the status of the request. For more information, see <code>GetChangeTokenStatus</code>.</p>
11 /// - On failure, responds with [`SdkError<CreateSqlInjectionMatchSetError>`](crate::operation::create_sql_injection_match_set::CreateSqlInjectionMatchSetError)
12 pub fn create_sql_injection_match_set(
13 &self,
14 ) -> crate::operation::create_sql_injection_match_set::builders::CreateSqlInjectionMatchSetFluentBuilder {
15 crate::operation::create_sql_injection_match_set::builders::CreateSqlInjectionMatchSetFluentBuilder::new(self.handle.clone())
16 }
17}