#[non_exhaustive]pub struct AwsBackupBackupVaultDetails {
pub backup_vault_arn: Option<String>,
pub backup_vault_name: Option<String>,
pub encryption_key_arn: Option<String>,
pub notifications: Option<AwsBackupBackupVaultNotificationsDetails>,
pub access_policy: Option<String>,
}
Expand description
Provides details about an Backup backup vault. In Backup, a backup vault is a container that stores and organizes your backups.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.backup_vault_arn: Option<String>
An Amazon Resource Name (ARN) that uniquely identifies a backup vault.
backup_vault_name: Option<String>
The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the Amazon Web Services account used to create them and the Amazon Web Services Region where they are created. They consist of lowercase letters, numbers, and hyphens.
encryption_key_arn: Option<String>
The unique ARN associated with the server-side encryption key. You can specify a key to encrypt your backups from services that support full Backup management. If you do not specify a key, Backup creates an KMS key for you by default.
notifications: Option<AwsBackupBackupVaultNotificationsDetails>
The Amazon SNS event notifications for the specified backup vault.
access_policy: Option<String>
A resource-based policy that is used to manage access permissions on the target backup vault.
Implementations§
source§impl AwsBackupBackupVaultDetails
impl AwsBackupBackupVaultDetails
sourcepub fn backup_vault_arn(&self) -> Option<&str>
pub fn backup_vault_arn(&self) -> Option<&str>
An Amazon Resource Name (ARN) that uniquely identifies a backup vault.
sourcepub fn backup_vault_name(&self) -> Option<&str>
pub fn backup_vault_name(&self) -> Option<&str>
The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the Amazon Web Services account used to create them and the Amazon Web Services Region where they are created. They consist of lowercase letters, numbers, and hyphens.
sourcepub fn encryption_key_arn(&self) -> Option<&str>
pub fn encryption_key_arn(&self) -> Option<&str>
The unique ARN associated with the server-side encryption key. You can specify a key to encrypt your backups from services that support full Backup management. If you do not specify a key, Backup creates an KMS key for you by default.
sourcepub fn notifications(&self) -> Option<&AwsBackupBackupVaultNotificationsDetails>
pub fn notifications(&self) -> Option<&AwsBackupBackupVaultNotificationsDetails>
The Amazon SNS event notifications for the specified backup vault.
sourcepub fn access_policy(&self) -> Option<&str>
pub fn access_policy(&self) -> Option<&str>
A resource-based policy that is used to manage access permissions on the target backup vault.
source§impl AwsBackupBackupVaultDetails
impl AwsBackupBackupVaultDetails
sourcepub fn builder() -> AwsBackupBackupVaultDetailsBuilder
pub fn builder() -> AwsBackupBackupVaultDetailsBuilder
Creates a new builder-style object to manufacture AwsBackupBackupVaultDetails
.
Trait Implementations§
source§impl Clone for AwsBackupBackupVaultDetails
impl Clone for AwsBackupBackupVaultDetails
source§fn clone(&self) -> AwsBackupBackupVaultDetails
fn clone(&self) -> AwsBackupBackupVaultDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AwsBackupBackupVaultDetails
impl Debug for AwsBackupBackupVaultDetails
source§impl PartialEq for AwsBackupBackupVaultDetails
impl PartialEq for AwsBackupBackupVaultDetails
source§fn eq(&self, other: &AwsBackupBackupVaultDetails) -> bool
fn eq(&self, other: &AwsBackupBackupVaultDetails) -> bool
self
and other
values to be equal, and is used
by ==
.