aws_sdk_waf/client/
get_regex_match_set.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetRegexMatchSet`](crate::operation::get_regex_match_set::builders::GetRegexMatchSetFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`regex_match_set_id(impl Into<String>)`](crate::operation::get_regex_match_set::builders::GetRegexMatchSetFluentBuilder::regex_match_set_id) / [`set_regex_match_set_id(Option<String>)`](crate::operation::get_regex_match_set::builders::GetRegexMatchSetFluentBuilder::set_regex_match_set_id):<br>required: **true**<br><p>The <code>RegexMatchSetId</code> of the <code>RegexMatchSet</code> that you want to get. <code>RegexMatchSetId</code> is returned by <code>CreateRegexMatchSet</code> and by <code>ListRegexMatchSets</code>.</p><br>
    /// - On success, responds with [`GetRegexMatchSetOutput`](crate::operation::get_regex_match_set::GetRegexMatchSetOutput) with field(s):
    ///   - [`regex_match_set(Option<RegexMatchSet>)`](crate::operation::get_regex_match_set::GetRegexMatchSetOutput::regex_match_set): <p>Information about the <code>RegexMatchSet</code> that you specified in the <code>GetRegexMatchSet</code> request. For more information, see <code>RegexMatchTuple</code>.</p>
    /// - On failure, responds with [`SdkError<GetRegexMatchSetError>`](crate::operation::get_regex_match_set::GetRegexMatchSetError)
    pub fn get_regex_match_set(&self) -> crate::operation::get_regex_match_set::builders::GetRegexMatchSetFluentBuilder {
        crate::operation::get_regex_match_set::builders::GetRegexMatchSetFluentBuilder::new(self.handle.clone())
    }
}