aws-sdk-budgets 1.74.0

AWS SDK for AWS Budgets
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateNotification`](crate::operation::update_notification::builders::UpdateNotificationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`account_id(impl Into<String>)`](crate::operation::update_notification::builders::UpdateNotificationFluentBuilder::account_id) / [`set_account_id(Option<String>)`](crate::operation::update_notification::builders::UpdateNotificationFluentBuilder::set_account_id):<br>required: **true**<br><p>The <code>accountId</code> that is associated with the budget whose notification you want to update.</p><br>
    ///   - [`budget_name(impl Into<String>)`](crate::operation::update_notification::builders::UpdateNotificationFluentBuilder::budget_name) / [`set_budget_name(Option<String>)`](crate::operation::update_notification::builders::UpdateNotificationFluentBuilder::set_budget_name):<br>required: **true**<br><p>The name of the budget whose notification you want to update.</p><br>
    ///   - [`old_notification(Notification)`](crate::operation::update_notification::builders::UpdateNotificationFluentBuilder::old_notification) / [`set_old_notification(Option<Notification>)`](crate::operation::update_notification::builders::UpdateNotificationFluentBuilder::set_old_notification):<br>required: **true**<br><p>The previous notification that is associated with a budget.</p><br>
    ///   - [`new_notification(Notification)`](crate::operation::update_notification::builders::UpdateNotificationFluentBuilder::new_notification) / [`set_new_notification(Option<Notification>)`](crate::operation::update_notification::builders::UpdateNotificationFluentBuilder::set_new_notification):<br>required: **true**<br><p>The updated notification to be associated with a budget.</p><br>
    /// - On success, responds with [`UpdateNotificationOutput`](crate::operation::update_notification::UpdateNotificationOutput)
    /// - On failure, responds with [`SdkError<UpdateNotificationError>`](crate::operation::update_notification::UpdateNotificationError)
    pub fn update_notification(&self) -> crate::operation::update_notification::builders::UpdateNotificationFluentBuilder {
        crate::operation::update_notification::builders::UpdateNotificationFluentBuilder::new(self.handle.clone())
    }
}