1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListAccountIntegrations`](crate::operation::list_account_integrations::builders::ListAccountIntegrationsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`uri(impl Into<String>)`](crate::operation::list_account_integrations::builders::ListAccountIntegrationsFluentBuilder::uri) / [`set_uri(Option<String>)`](crate::operation::list_account_integrations::builders::ListAccountIntegrationsFluentBuilder::set_uri):<br>required: **true**<br><p>The URI of the S3 bucket or any other type of data source.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_account_integrations::builders::ListAccountIntegrationsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_account_integrations::builders::ListAccountIntegrationsFluentBuilder::set_next_token):<br>required: **false**<br><p>The pagination token from the previous ListAccountIntegrations API call.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_account_integrations::builders::ListAccountIntegrationsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_account_integrations::builders::ListAccountIntegrationsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of objects returned per page.</p><br>
    ///   - [`include_hidden(bool)`](crate::operation::list_account_integrations::builders::ListAccountIntegrationsFluentBuilder::include_hidden) / [`set_include_hidden(Option<bool>)`](crate::operation::list_account_integrations::builders::ListAccountIntegrationsFluentBuilder::set_include_hidden):<br>required: **false**<br><p>Boolean to indicate if hidden integration should be returned. Defaults to <code>False</code>.</p><br>
    /// - On success, responds with [`ListAccountIntegrationsOutput`](crate::operation::list_account_integrations::ListAccountIntegrationsOutput) with field(s):
    ///   - [`items(Option<Vec::<ListIntegrationItem>>)`](crate::operation::list_account_integrations::ListAccountIntegrationsOutput::items): <p>The list of ListAccountIntegration instances.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_account_integrations::ListAccountIntegrationsOutput::next_token): <p>The pagination token from the previous ListAccountIntegrations API call.</p>
    /// - On failure, responds with [`SdkError<ListAccountIntegrationsError>`](crate::operation::list_account_integrations::ListAccountIntegrationsError)
    pub fn list_account_integrations(&self) -> crate::operation::list_account_integrations::builders::ListAccountIntegrationsFluentBuilder {
        crate::operation::list_account_integrations::builders::ListAccountIntegrationsFluentBuilder::new(self.handle.clone())
    }
}