aws_sdk_wellarchitected/client/list_profile_notifications.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 [`ListProfileNotifications`](crate::operation::list_profile_notifications::builders::ListProfileNotificationsFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_profile_notifications::builders::ListProfileNotificationsFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`workload_id(impl Into<String>)`](crate::operation::list_profile_notifications::builders::ListProfileNotificationsFluentBuilder::workload_id) / [`set_workload_id(Option<String>)`](crate::operation::list_profile_notifications::builders::ListProfileNotificationsFluentBuilder::set_workload_id):<br>required: **false**<br><p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p><br>
8 /// - [`next_token(impl Into<String>)`](crate::operation::list_profile_notifications::builders::ListProfileNotificationsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_profile_notifications::builders::ListProfileNotificationsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token to use to retrieve the next set of results.</p><br>
9 /// - [`max_results(i32)`](crate::operation::list_profile_notifications::builders::ListProfileNotificationsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_profile_notifications::builders::ListProfileNotificationsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return for this request.</p><br>
10 /// - On success, responds with [`ListProfileNotificationsOutput`](crate::operation::list_profile_notifications::ListProfileNotificationsOutput) with field(s):
11 /// - [`notification_summaries(Option<Vec::<ProfileNotificationSummary>>)`](crate::operation::list_profile_notifications::ListProfileNotificationsOutput::notification_summaries): <p>Notification summaries.</p>
12 /// - [`next_token(Option<String>)`](crate::operation::list_profile_notifications::ListProfileNotificationsOutput::next_token): <p>The token to use to retrieve the next set of results.</p>
13 /// - On failure, responds with [`SdkError<ListProfileNotificationsError>`](crate::operation::list_profile_notifications::ListProfileNotificationsError)
14 pub fn list_profile_notifications(&self) -> crate::operation::list_profile_notifications::builders::ListProfileNotificationsFluentBuilder {
15 crate::operation::list_profile_notifications::builders::ListProfileNotificationsFluentBuilder::new(self.handle.clone())
16 }
17}