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 [`SearchVocabularies`](crate::operation::search_vocabularies::builders::SearchVocabulariesFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::search_vocabularies::builders::SearchVocabulariesFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`instance_id(impl Into<String>)`](crate::operation::search_vocabularies::builders::SearchVocabulariesFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::search_vocabularies::builders::SearchVocabulariesFluentBuilder::set_instance_id): <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
    ///   - [`max_results(i32)`](crate::operation::search_vocabularies::builders::SearchVocabulariesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::search_vocabularies::builders::SearchVocabulariesFluentBuilder::set_max_results): <p>The maximum number of results to return per page.</p>
    ///   - [`next_token(impl Into<String>)`](crate::operation::search_vocabularies::builders::SearchVocabulariesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::search_vocabularies::builders::SearchVocabulariesFluentBuilder::set_next_token): <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>
    ///   - [`state(VocabularyState)`](crate::operation::search_vocabularies::builders::SearchVocabulariesFluentBuilder::state) / [`set_state(Option<VocabularyState>)`](crate::operation::search_vocabularies::builders::SearchVocabulariesFluentBuilder::set_state): <p>The current state of the custom vocabulary.</p>
    ///   - [`name_starts_with(impl Into<String>)`](crate::operation::search_vocabularies::builders::SearchVocabulariesFluentBuilder::name_starts_with) / [`set_name_starts_with(Option<String>)`](crate::operation::search_vocabularies::builders::SearchVocabulariesFluentBuilder::set_name_starts_with): <p>The starting pattern of the name of the vocabulary.</p>
    ///   - [`language_code(VocabularyLanguageCode)`](crate::operation::search_vocabularies::builders::SearchVocabulariesFluentBuilder::language_code) / [`set_language_code(Option<VocabularyLanguageCode>)`](crate::operation::search_vocabularies::builders::SearchVocabulariesFluentBuilder::set_language_code): <p>The language code of the vocabulary entries. For a list of languages and their corresponding language codes, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/transcribe-whatis.html">What is Amazon Transcribe?</a> </p>
    /// - On success, responds with [`SearchVocabulariesOutput`](crate::operation::search_vocabularies::SearchVocabulariesOutput) with field(s):
    ///   - [`vocabulary_summary_list(Option<Vec<VocabularySummary>>)`](crate::operation::search_vocabularies::SearchVocabulariesOutput::vocabulary_summary_list): <p>The list of the available custom vocabularies.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::search_vocabularies::SearchVocabulariesOutput::next_token): <p>If there are additional results, this is the token for the next set of results.</p>
    /// - On failure, responds with [`SdkError<SearchVocabulariesError>`](crate::operation::search_vocabularies::SearchVocabulariesError)
    pub fn search_vocabularies(&self) -> crate::operation::search_vocabularies::builders::SearchVocabulariesFluentBuilder {
        crate::operation::search_vocabularies::builders::SearchVocabulariesFluentBuilder::new(self.handle.clone())
    }
}