aws-sdk-quicksight 1.145.0

AWS SDK for Amazon QuickSight
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`SearchSpaces`](crate::operation::search_spaces::builders::SearchSpacesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::search_spaces::builders::SearchSpacesFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::search_spaces::builders::SearchSpacesFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that contains the spaces.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::search_spaces::builders::SearchSpacesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::search_spaces::builders::SearchSpacesFluentBuilder::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>
    ///   - [`max_results(i32)`](crate::operation::search_spaces::builders::SearchSpacesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::search_spaces::builders::SearchSpacesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return.</p><br>
    ///   - [`filters(SpaceQuicksightSearchFilter)`](crate::operation::search_spaces::builders::SearchSpacesFluentBuilder::filters) / [`set_filters(Option<Vec::<SpaceQuicksightSearchFilter>>)`](crate::operation::search_spaces::builders::SearchSpacesFluentBuilder::set_filters):<br>required: **true**<br><p>The filters to apply to the search.</p><br>
    /// - On success, responds with [`SearchSpacesOutput`](crate::operation::search_spaces::SearchSpacesOutput) with field(s):
    ///   - [`space_id(String)`](crate::operation::search_spaces::SearchSpacesOutput::space_id): <p>The ID of the space.</p>
    ///   - [`space_arn(Option<String>)`](crate::operation::search_spaces::SearchSpacesOutput::space_arn): <p>The ARN of the space.</p>
    ///   - [`space_summaries(Vec::<SpaceSummary>)`](crate::operation::search_spaces::SearchSpacesOutput::space_summaries): <p>A list of space summaries that match the search criteria.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::search_spaces::SearchSpacesOutput::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_spaces::SearchSpacesOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
    /// - On failure, responds with [`SdkError<SearchSpacesError>`](crate::operation::search_spaces::SearchSpacesError)
    pub fn search_spaces(&self) -> crate::operation::search_spaces::builders::SearchSpacesFluentBuilder {
        crate::operation::search_spaces::builders::SearchSpacesFluentBuilder::new(self.handle.clone())
    }
}