aws_sdk_backup/client/
delete_backup_vault_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 [`DeleteBackupVaultNotifications`](crate::operation::delete_backup_vault_notifications::builders::DeleteBackupVaultNotificationsFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`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>
7    /// - On success, responds with [`DeleteBackupVaultNotificationsOutput`](crate::operation::delete_backup_vault_notifications::DeleteBackupVaultNotificationsOutput)
8    /// - On failure, responds with [`SdkError<DeleteBackupVaultNotificationsError>`](crate::operation::delete_backup_vault_notifications::DeleteBackupVaultNotificationsError)
9    pub fn delete_backup_vault_notifications(
10        &self,
11    ) -> crate::operation::delete_backup_vault_notifications::builders::DeleteBackupVaultNotificationsFluentBuilder {
12        crate::operation::delete_backup_vault_notifications::builders::DeleteBackupVaultNotificationsFluentBuilder::new(self.handle.clone())
13    }
14}