aws_sdk_customerprofiles/client/
list_rule_based_matches.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListRuleBasedMatches`](crate::operation::list_rule_based_matches::builders::ListRuleBasedMatchesFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_rule_based_matches::builders::ListRuleBasedMatchesFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_rule_based_matches::builders::ListRuleBasedMatchesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_rule_based_matches::builders::ListRuleBasedMatchesFluentBuilder::set_next_token):<br>required: **false**<br><p>The pagination token from the previous <code>ListRuleBasedMatches</code> API call.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_rule_based_matches::builders::ListRuleBasedMatchesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_rule_based_matches::builders::ListRuleBasedMatchesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of <code>MatchIds</code> returned per page.</p><br>
    ///   - [`domain_name(impl Into<String>)`](crate::operation::list_rule_based_matches::builders::ListRuleBasedMatchesFluentBuilder::domain_name) / [`set_domain_name(Option<String>)`](crate::operation::list_rule_based_matches::builders::ListRuleBasedMatchesFluentBuilder::set_domain_name):<br>required: **true**<br><p>The unique name of the domain.</p><br>
    /// - On success, responds with [`ListRuleBasedMatchesOutput`](crate::operation::list_rule_based_matches::ListRuleBasedMatchesOutput) with field(s):
    ///   - [`match_ids(Option<Vec::<String>>)`](crate::operation::list_rule_based_matches::ListRuleBasedMatchesOutput::match_ids): <p>The list of <code>MatchIds</code> for the given domain.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_rule_based_matches::ListRuleBasedMatchesOutput::next_token): <p>The pagination token from the previous <code>ListRuleBasedMatches</code> API call.</p>
    /// - On failure, responds with [`SdkError<ListRuleBasedMatchesError>`](crate::operation::list_rule_based_matches::ListRuleBasedMatchesError)
    pub fn list_rule_based_matches(&self) -> crate::operation::list_rule_based_matches::builders::ListRuleBasedMatchesFluentBuilder {
        crate::operation::list_rule_based_matches::builders::ListRuleBasedMatchesFluentBuilder::new(self.handle.clone())
    }
}