1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetMatches`](crate::operation::get_matches::builders::GetMatchesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::operation::get_matches::builders::GetMatchesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::get_matches::builders::GetMatchesFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.</p><br>
    ///   - [`max_results(i32)`](crate::operation::get_matches::builders::GetMatchesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::get_matches::builders::GetMatchesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return per page.</p><br>
    ///   - [`domain_name(impl Into<String>)`](crate::operation::get_matches::builders::GetMatchesFluentBuilder::domain_name) / [`set_domain_name(Option<String>)`](crate::operation::get_matches::builders::GetMatchesFluentBuilder::set_domain_name):<br>required: **true**<br><p>The unique name of the domain.</p><br>
    /// - On success, responds with [`GetMatchesOutput`](crate::operation::get_matches::GetMatchesOutput) with field(s):
    ///   - [`next_token(Option<String>)`](crate::operation::get_matches::GetMatchesOutput::next_token): <p>If there are additional results, this is the token for the next set of results.</p>
    ///   - [`match_generation_date(Option<DateTime>)`](crate::operation::get_matches::GetMatchesOutput::match_generation_date): <p>The timestamp this version of Match Result generated.</p>
    ///   - [`potential_matches(Option<i32>)`](crate::operation::get_matches::GetMatchesOutput::potential_matches): <p>The number of potential matches found.</p>
    ///   - [`matches(Option<Vec::<MatchItem>>)`](crate::operation::get_matches::GetMatchesOutput::matches): <p>The list of matched profiles for this instance.</p>
    /// - On failure, responds with [`SdkError<GetMatchesError>`](crate::operation::get_matches::GetMatchesError)
    pub fn get_matches(&self) -> crate::operation::get_matches::builders::GetMatchesFluentBuilder {
        crate::operation::get_matches::builders::GetMatchesFluentBuilder::new(self.handle.clone())
    }
}