pub struct GetBackupVaultAccessPolicyOutput {
pub backup_vault_arn: Option<String>,
pub backup_vault_name: Option<String>,
pub policy: Option<String>,
}
Fields§
§backup_vault_arn: Option<String>
An Amazon Resource Name (ARN) that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault
.
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 account used to create them and the Region where they are created. They consist of lowercase letters, numbers, and hyphens.
policy: Option<String>
The backup vault access policy document in JSON format.
Trait Implementations§
Source§impl Clone for GetBackupVaultAccessPolicyOutput
impl Clone for GetBackupVaultAccessPolicyOutput
Source§fn clone(&self) -> GetBackupVaultAccessPolicyOutput
fn clone(&self) -> GetBackupVaultAccessPolicyOutput
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 GetBackupVaultAccessPolicyOutput
impl Default for GetBackupVaultAccessPolicyOutput
Source§fn default() -> GetBackupVaultAccessPolicyOutput
fn default() -> GetBackupVaultAccessPolicyOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetBackupVaultAccessPolicyOutput
impl<'de> Deserialize<'de> for GetBackupVaultAccessPolicyOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetBackupVaultAccessPolicyOutput
impl PartialEq for GetBackupVaultAccessPolicyOutput
Source§fn eq(&self, other: &GetBackupVaultAccessPolicyOutput) -> bool
fn eq(&self, other: &GetBackupVaultAccessPolicyOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetBackupVaultAccessPolicyOutput
Auto Trait Implementations§
impl Freeze for GetBackupVaultAccessPolicyOutput
impl RefUnwindSafe for GetBackupVaultAccessPolicyOutput
impl Send for GetBackupVaultAccessPolicyOutput
impl Sync for GetBackupVaultAccessPolicyOutput
impl Unpin for GetBackupVaultAccessPolicyOutput
impl UnwindSafe for GetBackupVaultAccessPolicyOutput
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