aws_sdk_quicksight/client/search_flows.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 [`SearchFlows`](crate::operation::search_flows::builders::SearchFlowsFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::search_flows::builders::SearchFlowsFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`aws_account_id(impl Into<String>)`](crate::operation::search_flows::builders::SearchFlowsFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::search_flows::builders::SearchFlowsFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account where you are searching for flows from.</p><br>
8 /// - [`filters(SearchFlowsFilter)`](crate::operation::search_flows::builders::SearchFlowsFluentBuilder::filters) / [`set_filters(Option<Vec::<SearchFlowsFilter>>)`](crate::operation::search_flows::builders::SearchFlowsFluentBuilder::set_filters):<br>required: **true**<br><p>The filters applied to the search when searching for flows in the Amazon Web Services account.</p><br>
9 /// - [`next_token(impl Into<String>)`](crate::operation::search_flows::builders::SearchFlowsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::search_flows::builders::SearchFlowsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token to request the next set of results, or null if you want to retrieve the first set.</p><br>
10 /// - [`max_results(i32)`](crate::operation::search_flows::builders::SearchFlowsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::search_flows::builders::SearchFlowsFluentBuilder::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 [`SearchFlowsOutput`](crate::operation::search_flows::SearchFlowsOutput) with field(s):
12 /// - [`flow_summary_list(Vec::<FlowSummary>)`](crate::operation::search_flows::SearchFlowsOutput::flow_summary_list): <p>The list of flows found against the search.</p>
13 /// - [`next_token(Option<String>)`](crate::operation::search_flows::SearchFlowsOutput::next_token): <p>The token for the next set of results, or null if there are no more results.</p>
14 /// - [`request_id(Option<String>)`](crate::operation::search_flows::SearchFlowsOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
15 /// - [`status(i32)`](crate::operation::search_flows::SearchFlowsOutput::status): <p>The HTTP status of the request.</p>
16 /// - On failure, responds with [`SdkError<SearchFlowsError>`](crate::operation::search_flows::SearchFlowsError)
17 pub fn search_flows(&self) -> crate::operation::search_flows::builders::SearchFlowsFluentBuilder {
18 crate::operation::search_flows::builders::SearchFlowsFluentBuilder::new(self.handle.clone())
19 }
20}