aws_sdk_backup/client/
delete_backup_vault_notifications.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteBackupVaultNotifications`](crate::operation::delete_backup_vault_notifications::builders::DeleteBackupVaultNotificationsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`backup_vault_name(impl Into<String>)`](crate::operation::delete_backup_vault_notifications::builders::DeleteBackupVaultNotificationsFluentBuilder::backup_vault_name) / [`set_backup_vault_name(Option<String>)`](crate::operation::delete_backup_vault_notifications::builders::DeleteBackupVaultNotificationsFluentBuilder::set_backup_vault_name):<br>required: **true**<br><p>The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Region where they are created.</p><br>
    /// - On success, responds with [`DeleteBackupVaultNotificationsOutput`](crate::operation::delete_backup_vault_notifications::DeleteBackupVaultNotificationsOutput)
    /// - On failure, responds with [`SdkError<DeleteBackupVaultNotificationsError>`](crate::operation::delete_backup_vault_notifications::DeleteBackupVaultNotificationsError)
    pub fn delete_backup_vault_notifications(
        &self,
    ) -> crate::operation::delete_backup_vault_notifications::builders::DeleteBackupVaultNotificationsFluentBuilder {
        crate::operation::delete_backup_vault_notifications::builders::DeleteBackupVaultNotificationsFluentBuilder::new(self.handle.clone())
    }
}