pub struct PutBackupVaultNotificationsInput {
pub backup_vault_events: Vec<String>,
pub backup_vault_name: String,
pub sns_topic_arn: String,
}
Fields§
§backup_vault_events: Vec<String>
An array of events that indicate the status of jobs to back up resources to the backup vault.
backup_vault_name: String
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 AWS Region where they are created. They consist of lowercase letters, numbers, and hyphens.
sns_topic_arn: String
The Amazon Resource Name (ARN) that specifies the topic for a backup vault’s events; for example, arn:aws:sns:us-west-2:111122223333:MyVaultTopic
.
Trait Implementations§
Source§impl Clone for PutBackupVaultNotificationsInput
impl Clone for PutBackupVaultNotificationsInput
Source§fn clone(&self) -> PutBackupVaultNotificationsInput
fn clone(&self) -> PutBackupVaultNotificationsInput
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for PutBackupVaultNotificationsInput
impl Default for PutBackupVaultNotificationsInput
Source§fn default() -> PutBackupVaultNotificationsInput
fn default() -> PutBackupVaultNotificationsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for PutBackupVaultNotificationsInput
impl PartialEq for PutBackupVaultNotificationsInput
Source§fn eq(&self, other: &PutBackupVaultNotificationsInput) -> bool
fn eq(&self, other: &PutBackupVaultNotificationsInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PutBackupVaultNotificationsInput
Auto Trait Implementations§
impl Freeze for PutBackupVaultNotificationsInput
impl RefUnwindSafe for PutBackupVaultNotificationsInput
impl Send for PutBackupVaultNotificationsInput
impl Sync for PutBackupVaultNotificationsInput
impl Unpin for PutBackupVaultNotificationsInput
impl UnwindSafe for PutBackupVaultNotificationsInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more