aws-sdk-quicksight 1.136.0

AWS SDK for Amazon QuickSight
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`SearchAgents`](crate::operation::search_agents::builders::SearchAgentsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::search_agents::builders::SearchAgentsFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::search_agents::builders::SearchAgentsFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that contains the agents.</p><br>
    ///   - [`filters(AgentSearchFilter)`](crate::operation::search_agents::builders::SearchAgentsFluentBuilder::filters) / [`set_filters(Option<Vec::<AgentSearchFilter>>)`](crate::operation::search_agents::builders::SearchAgentsFluentBuilder::set_filters):<br>required: **true**<br><p>The filters to apply when searching agents.</p><br>
    ///   - [`max_results(i32)`](crate::operation::search_agents::builders::SearchAgentsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::search_agents::builders::SearchAgentsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::search_agents::builders::SearchAgentsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::search_agents::builders::SearchAgentsFluentBuilder::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>
    /// - On success, responds with [`SearchAgentsOutput`](crate::operation::search_agents::SearchAgentsOutput) with field(s):
    ///   - [`agent_summaries(Option<Vec::<AgentSummary>>)`](crate::operation::search_agents::SearchAgentsOutput::agent_summaries): <p>A list of agent summaries.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::search_agents::SearchAgentsOutput::next_token): <p>The token for the next set of results, or null if there are no more results.</p>
    ///   - [`request_id(Option<String>)`](crate::operation::search_agents::SearchAgentsOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
    /// - On failure, responds with [`SdkError<SearchAgentsError>`](crate::operation::search_agents::SearchAgentsError)
    pub fn search_agents(&self) -> crate::operation::search_agents::builders::SearchAgentsFluentBuilder {
        crate::operation::search_agents::builders::SearchAgentsFluentBuilder::new(self.handle.clone())
    }
}