1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`SearchAddressBooks`](crate::operation::search_address_books::builders::SearchAddressBooksFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::search_address_books::builders::SearchAddressBooksFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`filters(Filter)`](crate::operation::search_address_books::builders::SearchAddressBooksFluentBuilder::filters) / [`set_filters(Option<Vec::<Filter>>)`](crate::operation::search_address_books::builders::SearchAddressBooksFluentBuilder::set_filters):<br>required: **false**<br><p>The filters to use to list a specified set of address books. The supported filter key is AddressBookName.</p><br>
    ///   - [`sort_criteria(Sort)`](crate::operation::search_address_books::builders::SearchAddressBooksFluentBuilder::sort_criteria) / [`set_sort_criteria(Option<Vec::<Sort>>)`](crate::operation::search_address_books::builders::SearchAddressBooksFluentBuilder::set_sort_criteria):<br>required: **false**<br><p>The sort order to use in listing the specified set of address books. The supported sort key is AddressBookName.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::search_address_books::builders::SearchAddressBooksFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::search_address_books::builders::SearchAddressBooksFluentBuilder::set_next_token):<br>required: **false**<br><p>An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response only includes results beyond the token, up to the value specified by MaxResults.</p><br>
    ///   - [`max_results(i32)`](crate::operation::search_address_books::builders::SearchAddressBooksFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::search_address_books::builders::SearchAddressBooksFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to include in the response. If more results exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.</p><br>
    /// - On success, responds with [`SearchAddressBooksOutput`](crate::operation::search_address_books::SearchAddressBooksOutput) with field(s):
    ///   - [`address_books(Option<Vec::<AddressBookData>>)`](crate::operation::search_address_books::SearchAddressBooksOutput::address_books): <p>The address books that meet the specified set of filter criteria, in sort order.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::search_address_books::SearchAddressBooksOutput::next_token): <p>The token returned to indicate that there is more data available.</p>
    ///   - [`total_count(Option<i32>)`](crate::operation::search_address_books::SearchAddressBooksOutput::total_count): <p>The total number of address books returned.</p>
    /// - On failure, responds with [`SdkError<SearchAddressBooksError>`](crate::operation::search_address_books::SearchAddressBooksError)
    #[deprecated(note = "Alexa For Business is no longer supported")]
    pub fn search_address_books(&self) -> crate::operation::search_address_books::builders::SearchAddressBooksFluentBuilder {
        crate::operation::search_address_books::builders::SearchAddressBooksFluentBuilder::new(self.handle.clone())
    }
}