pub struct CreateBackupVaultInput {
pub backup_vault_name: String,
pub backup_vault_tags: Option<HashMap<String, String>>,
pub creator_request_id: Option<String>,
pub encryption_key_arn: Option<String>,
}
Fields§
§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.
Metadata that you can assign to help organize the resources that you create. Each tag is a key-value pair.
creator_request_id: Option<String>
A unique string that identifies the request and allows failed requests to be retried without the risk of executing the operation twice.
encryption_key_arn: Option<String>
The server-side encryption key that is used to protect your backups; for example, arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
.
Trait Implementations§
Source§impl Clone for CreateBackupVaultInput
impl Clone for CreateBackupVaultInput
Source§fn clone(&self) -> CreateBackupVaultInput
fn clone(&self) -> CreateBackupVaultInput
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 Debug for CreateBackupVaultInput
impl Debug for CreateBackupVaultInput
Source§impl Default for CreateBackupVaultInput
impl Default for CreateBackupVaultInput
Source§fn default() -> CreateBackupVaultInput
fn default() -> CreateBackupVaultInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateBackupVaultInput
impl PartialEq for CreateBackupVaultInput
Source§impl Serialize for CreateBackupVaultInput
impl Serialize for CreateBackupVaultInput
impl StructuralPartialEq for CreateBackupVaultInput
Auto Trait Implementations§
impl Freeze for CreateBackupVaultInput
impl RefUnwindSafe for CreateBackupVaultInput
impl Send for CreateBackupVaultInput
impl Sync for CreateBackupVaultInput
impl Unpin for CreateBackupVaultInput
impl UnwindSafe for CreateBackupVaultInput
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