// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListUserNotifications`](crate::operation::list_user_notifications::builders::ListUserNotificationsFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`instance_id(impl Into<String>)`](crate::operation::list_user_notifications::builders::ListUserNotificationsFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::list_user_notifications::builders::ListUserNotificationsFluentBuilder::set_instance_id):<br>required: **true**<br><p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_user_notifications::builders::ListUserNotificationsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_user_notifications::builders::ListUserNotificationsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next set of results. Use the value returned in the previous response to retrieve the next page of results.</p><br>
/// - [`max_results(i32)`](crate::operation::list_user_notifications::builders::ListUserNotificationsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_user_notifications::builders::ListUserNotificationsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return per page. Valid range is 1-1000.</p><br>
/// - [`user_id(impl Into<String>)`](crate::operation::list_user_notifications::builders::ListUserNotificationsFluentBuilder::user_id) / [`set_user_id(Option<String>)`](crate::operation::list_user_notifications::builders::ListUserNotificationsFluentBuilder::set_user_id):<br>required: **true**<br><p>The identifier of the user.</p><br>
/// - On success, responds with [`ListUserNotificationsOutput`](crate::operation::list_user_notifications::ListUserNotificationsOutput) with field(s):
/// - [`user_notifications(Option<Vec::<UserNotificationSummary>>)`](crate::operation::list_user_notifications::ListUserNotificationsOutput::user_notifications): <p>A list of notifications sent to the specified user.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_user_notifications::ListUserNotificationsOutput::next_token): <p>The token for the next set of results. If present, there are more results available.</p>
/// - On failure, responds with [`SdkError<ListUserNotificationsError>`](crate::operation::list_user_notifications::ListUserNotificationsError)
pub fn list_user_notifications(&self) -> crate::operation::list_user_notifications::builders::ListUserNotificationsFluentBuilder {
crate::operation::list_user_notifications::builders::ListUserNotificationsFluentBuilder::new(self.handle.clone())
}
}