aws_sdk_customerprofiles/client/
list_integrations.rs

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 [`ListIntegrations`](crate::operation::list_integrations::builders::ListIntegrationsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`domain_name(impl Into<String>)`](crate::operation::list_integrations::builders::ListIntegrationsFluentBuilder::domain_name) / [`set_domain_name(Option<String>)`](crate::operation::list_integrations::builders::ListIntegrationsFluentBuilder::set_domain_name):<br>required: **true**<br><p>The unique name of the domain.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_integrations::builders::ListIntegrationsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_integrations::builders::ListIntegrationsFluentBuilder::set_next_token):<br>required: **false**<br><p>The pagination token from the previous ListIntegrations API call.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_integrations::builders::ListIntegrationsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_integrations::builders::ListIntegrationsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of objects returned per page.</p><br>
    ///   - [`include_hidden(bool)`](crate::operation::list_integrations::builders::ListIntegrationsFluentBuilder::include_hidden) / [`set_include_hidden(Option<bool>)`](crate::operation::list_integrations::builders::ListIntegrationsFluentBuilder::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 [`ListIntegrationsOutput`](crate::operation::list_integrations::ListIntegrationsOutput) with field(s):
    ///   - [`items(Option<Vec::<ListIntegrationItem>>)`](crate::operation::list_integrations::ListIntegrationsOutput::items): <p>The list of ListIntegrations instances.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_integrations::ListIntegrationsOutput::next_token): <p>The pagination token from the previous ListIntegrations API call.</p>
    /// - On failure, responds with [`SdkError<ListIntegrationsError>`](crate::operation::list_integrations::ListIntegrationsError)
    pub fn list_integrations(&self) -> crate::operation::list_integrations::builders::ListIntegrationsFluentBuilder {
        crate::operation::list_integrations::builders::ListIntegrationsFluentBuilder::new(self.handle.clone())
    }
}