aws_sdk_wafregional/client/
create_regex_pattern_set.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`CreateRegexPatternSet`](crate::operation::create_regex_pattern_set::builders::CreateRegexPatternSetFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::operation::create_regex_pattern_set::builders::CreateRegexPatternSetFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::create_regex_pattern_set::builders::CreateRegexPatternSetFluentBuilder::set_name):<br>required: **true**<br><p>A friendly name or description of the <code>RegexPatternSet</code>. You can't change <code>Name</code> after you create a <code>RegexPatternSet</code>.</p><br>
    ///   - [`change_token(impl Into<String>)`](crate::operation::create_regex_pattern_set::builders::CreateRegexPatternSetFluentBuilder::change_token) / [`set_change_token(Option<String>)`](crate::operation::create_regex_pattern_set::builders::CreateRegexPatternSetFluentBuilder::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 [`CreateRegexPatternSetOutput`](crate::operation::create_regex_pattern_set::CreateRegexPatternSetOutput) with field(s):
    ///   - [`regex_pattern_set(Option<RegexPatternSet>)`](crate::operation::create_regex_pattern_set::CreateRegexPatternSetOutput::regex_pattern_set): <p>A <code>RegexPatternSet</code> that contains no objects.</p>
    ///   - [`change_token(Option<String>)`](crate::operation::create_regex_pattern_set::CreateRegexPatternSetOutput::change_token): <p>The <code>ChangeToken</code> that you used to submit the <code>CreateRegexPatternSet</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<CreateRegexPatternSetError>`](crate::operation::create_regex_pattern_set::CreateRegexPatternSetError)
    pub fn create_regex_pattern_set(&self) -> crate::operation::create_regex_pattern_set::builders::CreateRegexPatternSetFluentBuilder {
        crate::operation::create_regex_pattern_set::builders::CreateRegexPatternSetFluentBuilder::new(self.handle.clone())
    }
}