aws_sdk_waf/client/create_byte_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 [`CreateByteMatchSet`](crate::operation::create_byte_match_set::builders::CreateByteMatchSetFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`name(impl Into<String>)`](crate::operation::create_byte_match_set::builders::CreateByteMatchSetFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::create_byte_match_set::builders::CreateByteMatchSetFluentBuilder::set_name):<br>required: **true**<br><p>A friendly name or description of the <code>ByteMatchSet</code>. You can't change <code>Name</code> after you create a <code>ByteMatchSet</code>.</p><br>
7 /// - [`change_token(impl Into<String>)`](crate::operation::create_byte_match_set::builders::CreateByteMatchSetFluentBuilder::change_token) / [`set_change_token(Option<String>)`](crate::operation::create_byte_match_set::builders::CreateByteMatchSetFluentBuilder::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 [`CreateByteMatchSetOutput`](crate::operation::create_byte_match_set::CreateByteMatchSetOutput) with field(s):
9 /// - [`byte_match_set(Option<ByteMatchSet>)`](crate::operation::create_byte_match_set::CreateByteMatchSetOutput::byte_match_set): <p>A <code>ByteMatchSet</code> that contains no <code>ByteMatchTuple</code> objects.</p>
10 /// - [`change_token(Option<String>)`](crate::operation::create_byte_match_set::CreateByteMatchSetOutput::change_token): <p>The <code>ChangeToken</code> that you used to submit the <code>CreateByteMatchSet</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<CreateByteMatchSetError>`](crate::operation::create_byte_match_set::CreateByteMatchSetError)
12 pub fn create_byte_match_set(&self) -> crate::operation::create_byte_match_set::builders::CreateByteMatchSetFluentBuilder {
13 crate::operation::create_byte_match_set::builders::CreateByteMatchSetFluentBuilder::new(self.handle.clone())
14 }
15}