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