aws_sdk_customerprofiles/client/list_rule_based_matches.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 [`ListRuleBasedMatches`](crate::operation::list_rule_based_matches::builders::ListRuleBasedMatchesFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_rule_based_matches::builders::ListRuleBasedMatchesFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`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>
8 /// - [`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>
9 /// - [`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>
10 /// - On success, responds with [`ListRuleBasedMatchesOutput`](crate::operation::list_rule_based_matches::ListRuleBasedMatchesOutput) with field(s):
11 /// - [`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>
12 /// - [`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>
13 /// - On failure, responds with [`SdkError<ListRuleBasedMatchesError>`](crate::operation::list_rule_based_matches::ListRuleBasedMatchesError)
14 pub fn list_rule_based_matches(&self) -> crate::operation::list_rule_based_matches::builders::ListRuleBasedMatchesFluentBuilder {
15 crate::operation::list_rule_based_matches::builders::ListRuleBasedMatchesFluentBuilder::new(self.handle.clone())
16 }
17}