aws_sdk_quicksight/client/search_topics.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 [`SearchTopics`](crate::operation::search_topics::builders::SearchTopicsFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::search_topics::builders::SearchTopicsFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`aws_account_id(impl Into<String>)`](crate::operation::search_topics::builders::SearchTopicsFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::search_topics::builders::SearchTopicsFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that contains the topic that you want to find.</p><br>
8 /// - [`filters(TopicSearchFilter)`](crate::operation::search_topics::builders::SearchTopicsFluentBuilder::filters) / [`set_filters(Option<Vec::<TopicSearchFilter>>)`](crate::operation::search_topics::builders::SearchTopicsFluentBuilder::set_filters):<br>required: **true**<br><p>The filters that you want to use to search for the topic.</p><br>
9 /// - [`next_token(impl Into<String>)`](crate::operation::search_topics::builders::SearchTopicsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::search_topics::builders::SearchTopicsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next set of results, or null if there are no more results.</p><br>
10 /// - [`max_results(i32)`](crate::operation::search_topics::builders::SearchTopicsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::search_topics::builders::SearchTopicsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to be returned per request.</p><br>
11 /// - On success, responds with [`SearchTopicsOutput`](crate::operation::search_topics::SearchTopicsOutput) with field(s):
12 /// - [`topic_summary_list(Option<Vec::<TopicSummary>>)`](crate::operation::search_topics::SearchTopicsOutput::topic_summary_list): <p>A list of topic summaries that is returned by the search topic request.</p>
13 /// - [`next_token(Option<String>)`](crate::operation::search_topics::SearchTopicsOutput::next_token): <p>The token for the next set of results, or null if there are no more results.</p>
14 /// - [`status(i32)`](crate::operation::search_topics::SearchTopicsOutput::status): <p>The HTTP status of the request.</p>
15 /// - [`request_id(Option<String>)`](crate::operation::search_topics::SearchTopicsOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
16 /// - On failure, responds with [`SdkError<SearchTopicsError>`](crate::operation::search_topics::SearchTopicsError)
17 pub fn search_topics(&self) -> crate::operation::search_topics::builders::SearchTopicsFluentBuilder {
18 crate::operation::search_topics::builders::SearchTopicsFluentBuilder::new(self.handle.clone())
19 }
20}