pub struct DeleteRecoveryPointInput {
pub backup_vault_name: String,
pub recovery_point_arn: 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.
recovery_point_arn: String
An Amazon Resource Name (ARN) that uniquely identifies a recovery point; for example, arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45
.
Trait Implementations§
Source§impl Clone for DeleteRecoveryPointInput
impl Clone for DeleteRecoveryPointInput
Source§fn clone(&self) -> DeleteRecoveryPointInput
fn clone(&self) -> DeleteRecoveryPointInput
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 DeleteRecoveryPointInput
impl Debug for DeleteRecoveryPointInput
Source§impl Default for DeleteRecoveryPointInput
impl Default for DeleteRecoveryPointInput
Source§fn default() -> DeleteRecoveryPointInput
fn default() -> DeleteRecoveryPointInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteRecoveryPointInput
impl PartialEq for DeleteRecoveryPointInput
Source§impl Serialize for DeleteRecoveryPointInput
impl Serialize for DeleteRecoveryPointInput
impl StructuralPartialEq for DeleteRecoveryPointInput
Auto Trait Implementations§
impl Freeze for DeleteRecoveryPointInput
impl RefUnwindSafe for DeleteRecoveryPointInput
impl Send for DeleteRecoveryPointInput
impl Sync for DeleteRecoveryPointInput
impl Unpin for DeleteRecoveryPointInput
impl UnwindSafe for DeleteRecoveryPointInput
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