aws_sdk_wafregional/client/delete_size_constraint_set.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DeleteSizeConstraintSet`](crate::operation::delete_size_constraint_set::builders::DeleteSizeConstraintSetFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`size_constraint_set_id(impl Into<String>)`](crate::operation::delete_size_constraint_set::builders::DeleteSizeConstraintSetFluentBuilder::size_constraint_set_id) / [`set_size_constraint_set_id(Option<String>)`](crate::operation::delete_size_constraint_set::builders::DeleteSizeConstraintSetFluentBuilder::set_size_constraint_set_id):<br>required: **true**<br><p>The <code>SizeConstraintSetId</code> of the <code>SizeConstraintSet</code> that you want to delete. <code>SizeConstraintSetId</code> is returned by <code>CreateSizeConstraintSet</code> and by <code>ListSizeConstraintSets</code>.</p><br>
/// - [`change_token(impl Into<String>)`](crate::operation::delete_size_constraint_set::builders::DeleteSizeConstraintSetFluentBuilder::change_token) / [`set_change_token(Option<String>)`](crate::operation::delete_size_constraint_set::builders::DeleteSizeConstraintSetFluentBuilder::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 [`DeleteSizeConstraintSetOutput`](crate::operation::delete_size_constraint_set::DeleteSizeConstraintSetOutput) with field(s):
/// - [`change_token(Option<String>)`](crate::operation::delete_size_constraint_set::DeleteSizeConstraintSetOutput::change_token): <p>The <code>ChangeToken</code> that you used to submit the <code>DeleteSizeConstraintSet</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<DeleteSizeConstraintSetError>`](crate::operation::delete_size_constraint_set::DeleteSizeConstraintSetError)
pub fn delete_size_constraint_set(&self) -> crate::operation::delete_size_constraint_set::builders::DeleteSizeConstraintSetFluentBuilder {
crate::operation::delete_size_constraint_set::builders::DeleteSizeConstraintSetFluentBuilder::new(self.handle.clone())
}
}