1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeBudgetNotificationsForAccount`](crate::operation::describe_budget_notifications_for_account::builders::DescribeBudgetNotificationsForAccountFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_budget_notifications_for_account::builders::DescribeBudgetNotificationsForAccountFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`account_id(impl Into<String>)`](crate::operation::describe_budget_notifications_for_account::builders::DescribeBudgetNotificationsForAccountFluentBuilder::account_id) / [`set_account_id(Option<String>)`](crate::operation::describe_budget_notifications_for_account::builders::DescribeBudgetNotificationsForAccountFluentBuilder::set_account_id):<br>required: **true**<br><p>The account ID of the user. It's a 12-digit number.</p><br>
    ///   - [`max_results(i32)`](crate::operation::describe_budget_notifications_for_account::builders::DescribeBudgetNotificationsForAccountFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::describe_budget_notifications_for_account::builders::DescribeBudgetNotificationsForAccountFluentBuilder::set_max_results):<br>required: **false**<br><p>An integer that represents how many budgets a paginated response contains. The default is 50.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::describe_budget_notifications_for_account::builders::DescribeBudgetNotificationsForAccountFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_budget_notifications_for_account::builders::DescribeBudgetNotificationsForAccountFluentBuilder::set_next_token):<br>required: **false**<br><p>A generic string.</p><br>
    /// - On success, responds with [`DescribeBudgetNotificationsForAccountOutput`](crate::operation::describe_budget_notifications_for_account::DescribeBudgetNotificationsForAccountOutput) with field(s):
    ///   - [`budget_notifications_for_account(Option<Vec::<BudgetNotificationsForAccount>>)`](crate::operation::describe_budget_notifications_for_account::DescribeBudgetNotificationsForAccountOutput::budget_notifications_for_account): <p>A list of budget names and associated notifications for an account.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::describe_budget_notifications_for_account::DescribeBudgetNotificationsForAccountOutput::next_token): <p>A generic string.</p>
    /// - On failure, responds with [`SdkError<DescribeBudgetNotificationsForAccountError>`](crate::operation::describe_budget_notifications_for_account::DescribeBudgetNotificationsForAccountError)
    pub fn describe_budget_notifications_for_account(
        &self,
    ) -> crate::operation::describe_budget_notifications_for_account::builders::DescribeBudgetNotificationsForAccountFluentBuilder {
        crate::operation::describe_budget_notifications_for_account::builders::DescribeBudgetNotificationsForAccountFluentBuilder::new(
            self.handle.clone(),
        )
    }
}