aws_sdk_notifications/client/
list_managed_notification_channel_associations.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 [`ListManagedNotificationChannelAssociations`](crate::operation::list_managed_notification_channel_associations::builders::ListManagedNotificationChannelAssociationsFluentBuilder) operation.
4    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_managed_notification_channel_associations::builders::ListManagedNotificationChannelAssociationsFluentBuilder::into_paginator).
5    ///
6    /// - The fluent builder is configurable:
7    ///   - [`managed_notification_configuration_arn(impl Into<String>)`](crate::operation::list_managed_notification_channel_associations::builders::ListManagedNotificationChannelAssociationsFluentBuilder::managed_notification_configuration_arn) / [`set_managed_notification_configuration_arn(Option<String>)`](crate::operation::list_managed_notification_channel_associations::builders::ListManagedNotificationChannelAssociationsFluentBuilder::set_managed_notification_configuration_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the <code>ManagedNotificationConfiguration</code> to match.</p><br>
8    ///   - [`max_results(i32)`](crate::operation::list_managed_notification_channel_associations::builders::ListManagedNotificationChannelAssociationsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_managed_notification_channel_associations::builders::ListManagedNotificationChannelAssociationsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to be returned in this call. Defaults to 20.</p><br>
9    ///   - [`next_token(impl Into<String>)`](crate::operation::list_managed_notification_channel_associations::builders::ListManagedNotificationChannelAssociationsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_managed_notification_channel_associations::builders::ListManagedNotificationChannelAssociationsFluentBuilder::set_next_token):<br>required: **false**<br><p>The start token for paginated calls. Retrieved from the response of a previous <code>ListManagedNotificationChannelAssociations</code> call.</p><br>
10    /// - On success, responds with [`ListManagedNotificationChannelAssociationsOutput`](crate::operation::list_managed_notification_channel_associations::ListManagedNotificationChannelAssociationsOutput) with field(s):
11    ///   - [`next_token(Option<String>)`](crate::operation::list_managed_notification_channel_associations::ListManagedNotificationChannelAssociationsOutput::next_token): <p>A pagination token. If a non-null pagination token is returned in a result, pass its value in another request to retrieve more entries.</p>
12    ///   - [`channel_associations(Vec::<ManagedNotificationChannelAssociationSummary>)`](crate::operation::list_managed_notification_channel_associations::ListManagedNotificationChannelAssociationsOutput::channel_associations): <p>A list that contains the following information about a channel association.</p>
13    /// - On failure, responds with [`SdkError<ListManagedNotificationChannelAssociationsError>`](crate::operation::list_managed_notification_channel_associations::ListManagedNotificationChannelAssociationsError)
14    pub fn list_managed_notification_channel_associations(
15        &self,
16    ) -> crate::operation::list_managed_notification_channel_associations::builders::ListManagedNotificationChannelAssociationsFluentBuilder {
17        crate::operation::list_managed_notification_channel_associations::builders::ListManagedNotificationChannelAssociationsFluentBuilder::new(
18            self.handle.clone(),
19        )
20    }
21}