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 [`ListVocabularyFilters`](crate::operation::list_vocabulary_filters::builders::ListVocabularyFiltersFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_vocabulary_filters::builders::ListVocabularyFiltersFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_vocabulary_filters::builders::ListVocabularyFiltersFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_vocabulary_filters::builders::ListVocabularyFiltersFluentBuilder::set_next_token):<br>required: **false**<br><p>If your <code>ListVocabularyFilters</code> request returns more results than can be displayed, <code>NextToken</code> is displayed in the response with an associated string. To get the next page of results, copy this string and repeat your request, including <code>NextToken</code> with the value of the copied string. Repeat as needed to view all your results.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_vocabulary_filters::builders::ListVocabularyFiltersFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_vocabulary_filters::builders::ListVocabularyFiltersFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of custom vocabulary filters to return in each page of results. If there are fewer results than the value that you specify, only the actual results are returned. If you do not specify a value, a default of 5 is used.</p><br>
    ///   - [`name_contains(impl Into<String>)`](crate::operation::list_vocabulary_filters::builders::ListVocabularyFiltersFluentBuilder::name_contains) / [`set_name_contains(Option<String>)`](crate::operation::list_vocabulary_filters::builders::ListVocabularyFiltersFluentBuilder::set_name_contains):<br>required: **false**<br><p>Returns only the custom vocabulary filters that contain the specified string. The search is not case sensitive.</p><br>
    /// - On success, responds with [`ListVocabularyFiltersOutput`](crate::operation::list_vocabulary_filters::ListVocabularyFiltersOutput) with field(s):
    ///   - [`next_token(Option<String>)`](crate::operation::list_vocabulary_filters::ListVocabularyFiltersOutput::next_token): <p>If <code>NextToken</code> is present in your response, it indicates that not all results are displayed. To view the next set of results, copy the string associated with the <code>NextToken</code> parameter in your results output, then run your request again including <code>NextToken</code> with the value of the copied string. Repeat as needed to view all your results.</p>
    ///   - [`vocabulary_filters(Option<Vec::<VocabularyFilterInfo>>)`](crate::operation::list_vocabulary_filters::ListVocabularyFiltersOutput::vocabulary_filters): <p>Provides information about the custom vocabulary filters that match the criteria specified in your request.</p>
    /// - On failure, responds with [`SdkError<ListVocabularyFiltersError>`](crate::operation::list_vocabulary_filters::ListVocabularyFiltersError)
    pub fn list_vocabulary_filters(&self) -> crate::operation::list_vocabulary_filters::builders::ListVocabularyFiltersFluentBuilder {
        crate::operation::list_vocabulary_filters::builders::ListVocabularyFiltersFluentBuilder::new(self.handle.clone())
    }
}