aws_sdk_customerprofiles/client/list_integrations.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 [`ListIntegrations`](crate::operation::list_integrations::builders::ListIntegrationsFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - [`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>
9 /// - [`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>
10 /// - On success, responds with [`ListIntegrationsOutput`](crate::operation::list_integrations::ListIntegrationsOutput) with field(s):
11 /// - [`items(Option<Vec::<ListIntegrationItem>>)`](crate::operation::list_integrations::ListIntegrationsOutput::items): <p>The list of ListIntegrations instances.</p>
12 /// - [`next_token(Option<String>)`](crate::operation::list_integrations::ListIntegrationsOutput::next_token): <p>The pagination token from the previous ListIntegrations API call.</p>
13 /// - On failure, responds with [`SdkError<ListIntegrationsError>`](crate::operation::list_integrations::ListIntegrationsError)
14 pub fn list_integrations(&self) -> crate::operation::list_integrations::builders::ListIntegrationsFluentBuilder {
15 crate::operation::list_integrations::builders::ListIntegrationsFluentBuilder::new(self.handle.clone())
16 }
17}